pom object zive, visual studio 2022

This commit is contained in:
Lukáš Kaňka
2023-08-31 21:26:24 +02:00
parent a19045ea77
commit 994b1ae271
122 changed files with 985 additions and 20 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

25
C#/Course/Course.sln Normal file
View File

@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.7.34018.315
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Course", "Course\Course.csproj", "{7ED62E0D-A271-4247-B9D8-2FF4D285982C}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{7ED62E0D-A271-4247-B9D8-2FF4D285982C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{7ED62E0D-A271-4247-B9D8-2FF4D285982C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{7ED62E0D-A271-4247-B9D8-2FF4D285982C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{7ED62E0D-A271-4247-B9D8-2FF4D285982C}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {DE0E6314-3717-481C-A06A-E7DDFB022575}
EndGlobalSection
EndGlobal

24
C#/Course/Course/.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,24 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": ".NET Core Launch (console)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/bin/Debug/net7.0/Course.dll",
"args": [],
"cwd": "${workspaceFolder}",
"console": "internalConsole",
"stopAtEntry": false
},
{
"name": ".NET Core Attach",
"type": "coreclr",
"request": "attach"
}
]
}

41
C#/Course/Course/.vscode/tasks.json vendored Normal file
View File

@ -0,0 +1,41 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/Course.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "publish",
"command": "dotnet",
"type": "process",
"args": [
"publish",
"${workspaceFolder}/Course.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "watch",
"command": "dotnet",
"type": "process",
"args": [
"watch",
"run",
"--project",
"${workspaceFolder}/Course.csproj"
],
"problemMatcher": "$msCompile"
}
]
}

View File

@ -0,0 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>

16
C#/Course/Course/Pokus.cs Normal file
View File

@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Course
{
internal class Pokus
{
static void Main(string[] args)
{
Console.WriteLine("Test");
}
}
}

View File

@ -0,0 +1,23 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v7.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v7.0": {
"Course/1.0.0": {
"runtime": {
"Course.dll": {}
}
}
}
},
"libraries": {
"Course/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
}
}
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,9 @@
{
"runtimeOptions": {
"tfm": "net7.0",
"framework": {
"name": "Microsoft.NETCore.App",
"version": "7.0.0"
}
}
}

View File

@ -0,0 +1,56 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Course
{
internal class JednoduchaKalkulacka
{
static void Main(string[] args)
{
Console.WriteLine("Zadejte číslo pro sčítání");
int i1 = int.Parse(Console.ReadLine());
Console.WriteLine("Zadejte číslo pro sčítání");
int i2 = int.Parse(Console.ReadLine());
Console.WriteLine("Napište + pro sčítání, - pro odčítání, * pro násobení, / pro dělení.");
string result = Console.ReadLine();
if (result == "+")
{
Console.WriteLine (i1 + i2);
}
else if (result == "-")
{
Console.WriteLine(i1 - i2);
}
else if (result == "*")
{
Console.WriteLine(i1 * i2);
}
else if (result == "/")
{
if (i2 ! = 0)
{
Console.WriteLine(i1 / i2);
}
else
{
Console.WriteLine("Výraz nemůže být nula!");
}
}
else
{
Console.WriteLine("Nebyl zadán ani jeden požadovaný znak!");
}
}
}
}

View File

@ -0,0 +1,63 @@
{
"format": 1,
"restore": {
"C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\C#\\Course\\Course\\Course.csproj": {}
},
"projects": {
"C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\C#\\Course\\Course\\Course.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\C#\\Course\\Course\\Course.csproj",
"projectName": "Course",
"projectPath": "C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\C#\\Course\\Course\\Course.csproj",
"packagesPath": "C:\\Users\\lukas\\.nuget\\packages\\",
"outputPath": "C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\C#\\Course\\Course\\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"
}
}
}
}
}

View File

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\lukas\.nuget\packages\</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.7.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\lukas\.nuget\packages\" />
</ItemGroup>
</Project>

View File

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />

View File

@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")]

View File

@ -0,0 +1,23 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 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.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("Course")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("Course")]
[assembly: System.Reflection.AssemblyTitleAttribute("Course")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generated by the MSBuild WriteCodeFragment class.

View File

@ -0,0 +1 @@
46f6bbdf3b5622f43c3e2cc0cb62a620fb416bfc

View File

@ -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 = Course
build_property.ProjectDir = c:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\Course\Course\

View File

@ -0,0 +1,8 @@
// <auto-generated/>
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;

Binary file not shown.

View File

@ -0,0 +1 @@
4d833869d16a67a42383d7ba8467c046f47d6971

View File

@ -0,0 +1,14 @@
C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\Course\Course\bin\Debug\net7.0\Course.exe
C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\Course\Course\bin\Debug\net7.0\Course.deps.json
C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\Course\Course\bin\Debug\net7.0\Course.runtimeconfig.json
C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\Course\Course\bin\Debug\net7.0\Course.dll
C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\Course\Course\bin\Debug\net7.0\Course.pdb
C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\Course\Course\obj\Debug\net7.0\Course.GeneratedMSBuildEditorConfig.editorconfig
C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\Course\Course\obj\Debug\net7.0\Course.AssemblyInfoInputs.cache
C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\Course\Course\obj\Debug\net7.0\Course.AssemblyInfo.cs
C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\Course\Course\obj\Debug\net7.0\Course.csproj.CoreCompileInputs.cache
C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\Course\Course\obj\Debug\net7.0\Course.dll
C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\Course\Course\obj\Debug\net7.0\refint\Course.dll
C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\Course\Course\obj\Debug\net7.0\Course.pdb
C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\Course\Course\obj\Debug\net7.0\Course.genruntimeconfig.cache
C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\Course\Course\obj\Debug\net7.0\ref\Course.dll

Binary file not shown.

View File

@ -0,0 +1 @@
d7296e2cfcf6e9b73309ccf60120bb35b70e54a2

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -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#\\Course\\Course\\Course.csproj",
"projectName": "Course",
"projectPath": "C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\C#\\Course\\Course\\Course.csproj",
"packagesPath": "C:\\Users\\lukas\\.nuget\\packages\\",
"outputPath": "C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\C#\\Course\\Course\\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"
}
}
}
}

View File

@ -0,0 +1,8 @@
{
"version": 2,
"dgSpecHash": "wGhVzYPCQb4gNYYfQio16YLkdvcNYUvoUfkVU1e3ez1jWDTS2f1RxlvsvcX9lJGzXRGipfp4YStF+IbOXOFT/w==",
"success": true,
"projectFilePath": "C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\C#\\Course\\Course\\Course.csproj",
"expectedPackageFiles": [],
"logs": []
}