metody, JB Rider

This commit is contained in:
Lukáš Kaňka
2023-09-04 20:43:11 +02:00
parent 05f75328d0
commit 5785acae64
148 changed files with 1242 additions and 1 deletions

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>

View File

@ -0,0 +1,22 @@
namespace Metody
{
internal class Program
{
static void Main(string[] args) // zde pouštíme na importované medoty níže
{
SayHelloWorld(); // <-- Parametr
CusSportak();
Console.ReadLine();
}
// další metoda
static void SayHelloWorld() // <-- toto je metoda
{
Console.WriteLine("HelloWorld!");
}
static void CusSportak()
{
Console.WriteLine("Čus Sporťák!");
}
}
}

View File

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

View File

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

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,22 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// 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("Metody")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("Metody")]
[assembly: System.Reflection.AssemblyTitleAttribute("Metody")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Vygenerované třídou WriteCodeFragment nástroje MSBuild

View File

@ -0,0 +1 @@
56db7413474315d796306d90dceee5cdf1e7f3f5

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 = Metody
build_property.ProjectDir = C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\C# Basic Udemy Seen\FirstProgram\Metody\

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;

View File

@ -0,0 +1 @@
d202a4824bb31a5af275532b884da1a11dc286fc

View File

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

View File

@ -0,0 +1 @@
28d9a4dd7a1d5dd5faa676995c4ae6a9d90b9595

View File

@ -0,0 +1,63 @@
{
"format": 1,
"restore": {
"C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\C#\\C# Basic Udemy Seen\\FirstProgram\\Metody\\Metody.csproj": {}
},
"projects": {
"C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\C#\\C# Basic Udemy Seen\\FirstProgram\\Metody\\Metody.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\C#\\C# Basic Udemy Seen\\FirstProgram\\Metody\\Metody.csproj",
"projectName": "Metody",
"projectPath": "C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\C#\\C# Basic Udemy Seen\\FirstProgram\\Metody\\Metody.csproj",
"packagesPath": "C:\\Users\\lukas\\.nuget\\packages\\",
"outputPath": "C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\C#\\C# Basic Udemy Seen\\FirstProgram\\Metody\\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.6.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,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\\Metody\\Metody.csproj",
"projectName": "Metody",
"projectPath": "C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\C#\\C# Basic Udemy Seen\\FirstProgram\\Metody\\Metody.csproj",
"packagesPath": "C:\\Users\\lukas\\.nuget\\packages\\",
"outputPath": "C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\C#\\C# Basic Udemy Seen\\FirstProgram\\Metody\\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": "QqwLS26xgW6Y7NHG4xzj6sS8zcUH311vTh/nTcLQclEX6LAIpEujQ8QkYCbZ7JH66C4aTFzcCFuYbzKrrZ8v5w==",
"success": true,
"projectFilePath": "C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\C#\\C# Basic Udemy Seen\\FirstProgram\\Metody\\Metody.csproj",
"expectedPackageFiles": [],
"logs": []
}

View File

@ -0,0 +1 @@
"restore":{"projectUniqueName":"C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\C#\\C# Basic Udemy Seen\\FirstProgram\\Metody\\Metody.csproj","projectName":"Metody","projectPath":"C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\C#\\C# Basic Udemy Seen\\FirstProgram\\Metody\\Metody.csproj","outputPath":"C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\C#\\C# Basic Udemy Seen\\FirstProgram\\Metody\\obj\\","projectStyle":"PackageReference","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 @@
16938301466651625