diff --git a/C#/Parametr/.vs/Parametr/DesignTimeBuild/.dtbcache.v2 b/C#/Parametr/.vs/Parametr/DesignTimeBuild/.dtbcache.v2 new file mode 100644 index 0000000..a207ef8 Binary files /dev/null and b/C#/Parametr/.vs/Parametr/DesignTimeBuild/.dtbcache.v2 differ diff --git a/C#/Parametr/.vs/Parametr/FileContentIndex/46b584a1-95fe-425e-b5b2-af37b8f7d834.vsidx b/C#/Parametr/.vs/Parametr/FileContentIndex/46b584a1-95fe-425e-b5b2-af37b8f7d834.vsidx new file mode 100644 index 0000000..b9903cf Binary files /dev/null and b/C#/Parametr/.vs/Parametr/FileContentIndex/46b584a1-95fe-425e-b5b2-af37b8f7d834.vsidx differ diff --git a/C#/Parametr/.vs/Parametr/FileContentIndex/e2bb60f6-48b8-478e-b33d-3b98dc83f598.vsidx b/C#/Parametr/.vs/Parametr/FileContentIndex/e2bb60f6-48b8-478e-b33d-3b98dc83f598.vsidx new file mode 100644 index 0000000..4315ac2 Binary files /dev/null and b/C#/Parametr/.vs/Parametr/FileContentIndex/e2bb60f6-48b8-478e-b33d-3b98dc83f598.vsidx differ diff --git a/C#/Parametr/.vs/Parametr/v17/.suo b/C#/Parametr/.vs/Parametr/v17/.suo new file mode 100644 index 0000000..70b7987 Binary files /dev/null and b/C#/Parametr/.vs/Parametr/v17/.suo differ diff --git a/C#/Parametr/Parametr.sln b/C#/Parametr/Parametr.sln new file mode 100644 index 0000000..056d52a --- /dev/null +++ b/C#/Parametr/Parametr.sln @@ -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}") = "Parametr", "Parametr\Parametr.csproj", "{5E2AA941-2323-4E74-B153-1CACAF3B3A75}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {5E2AA941-2323-4E74-B153-1CACAF3B3A75}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {5E2AA941-2323-4E74-B153-1CACAF3B3A75}.Debug|Any CPU.Build.0 = Debug|Any CPU + {5E2AA941-2323-4E74-B153-1CACAF3B3A75}.Release|Any CPU.ActiveCfg = Release|Any CPU + {5E2AA941-2323-4E74-B153-1CACAF3B3A75}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {80BCD470-0C2D-4AF7-BE2E-22A971A0CF1B} + EndGlobalSection +EndGlobal diff --git a/C#/Parametr/Parametr/NamedArgument.cs b/C#/Parametr/Parametr/NamedArgument.cs new file mode 100644 index 0000000..f63c608 --- /dev/null +++ b/C#/Parametr/Parametr/NamedArgument.cs @@ -0,0 +1,25 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Parametr +{ + public class NamedArgument + { + public static void Main(string[] args) + { + PrintEmployeeDetail("Franta", 12, 2015); + + PrintEmployeeDetail(age: 34, name: "Karel", empid: 2345); // tímto způsobem nemusíme dodržovat pořadí argumentů + + + } + static void PrintEmployeeDetail(string name, int age, int empid) + { + Console.WriteLine($"Name : {name}, Age : {age}, Employee ID : {empid}"); + } + } + +} diff --git a/C#/Parametr/Parametr/Parametr.csproj b/C#/Parametr/Parametr/Parametr.csproj new file mode 100644 index 0000000..74abf5c --- /dev/null +++ b/C#/Parametr/Parametr/Parametr.csproj @@ -0,0 +1,10 @@ + + + + Exe + net6.0 + enable + enable + + + diff --git a/C#/Parametr/Parametr/bin/Debug/net6.0/Parametr.deps.json b/C#/Parametr/Parametr/bin/Debug/net6.0/Parametr.deps.json new file mode 100644 index 0000000..9a558b3 --- /dev/null +++ b/C#/Parametr/Parametr/bin/Debug/net6.0/Parametr.deps.json @@ -0,0 +1,23 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "Parametr/1.0.0": { + "runtime": { + "Parametr.dll": {} + } + } + } + }, + "libraries": { + "Parametr/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/C#/Parametr/Parametr/bin/Debug/net6.0/Parametr.dll b/C#/Parametr/Parametr/bin/Debug/net6.0/Parametr.dll new file mode 100644 index 0000000..856476b Binary files /dev/null and b/C#/Parametr/Parametr/bin/Debug/net6.0/Parametr.dll differ diff --git a/C#/Parametr/Parametr/bin/Debug/net6.0/Parametr.exe b/C#/Parametr/Parametr/bin/Debug/net6.0/Parametr.exe new file mode 100644 index 0000000..560d43c Binary files /dev/null and b/C#/Parametr/Parametr/bin/Debug/net6.0/Parametr.exe differ diff --git a/C#/Parametr/Parametr/bin/Debug/net6.0/Parametr.pdb b/C#/Parametr/Parametr/bin/Debug/net6.0/Parametr.pdb new file mode 100644 index 0000000..0fe3d89 Binary files /dev/null and b/C#/Parametr/Parametr/bin/Debug/net6.0/Parametr.pdb differ diff --git a/C#/Parametr/Parametr/bin/Debug/net6.0/Parametr.runtimeconfig.json b/C#/Parametr/Parametr/bin/Debug/net6.0/Parametr.runtimeconfig.json new file mode 100644 index 0000000..4986d16 --- /dev/null +++ b/C#/Parametr/Parametr/bin/Debug/net6.0/Parametr.runtimeconfig.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "tfm": "net6.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "6.0.0" + } + } +} \ No newline at end of file diff --git a/C#/Parametr/Parametr/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/C#/Parametr/Parametr/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs new file mode 100644 index 0000000..ed92695 --- /dev/null +++ b/C#/Parametr/Parametr/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")] diff --git a/C#/Parametr/Parametr/obj/Debug/net6.0/Parametr.AssemblyInfo.cs b/C#/Parametr/Parametr/obj/Debug/net6.0/Parametr.AssemblyInfo.cs new file mode 100644 index 0000000..ad55930 --- /dev/null +++ b/C#/Parametr/Parametr/obj/Debug/net6.0/Parametr.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("Parametr")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Parametr")] +[assembly: System.Reflection.AssemblyTitleAttribute("Parametr")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/C#/Parametr/Parametr/obj/Debug/net6.0/Parametr.AssemblyInfoInputs.cache b/C#/Parametr/Parametr/obj/Debug/net6.0/Parametr.AssemblyInfoInputs.cache new file mode 100644 index 0000000..00159e8 --- /dev/null +++ b/C#/Parametr/Parametr/obj/Debug/net6.0/Parametr.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +bd8b1481e8d10defa10ae51d57edd34df0bf7c97 diff --git a/C#/Parametr/Parametr/obj/Debug/net6.0/Parametr.GeneratedMSBuildEditorConfig.editorconfig b/C#/Parametr/Parametr/obj/Debug/net6.0/Parametr.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..02cba6d --- /dev/null +++ b/C#/Parametr/Parametr/obj/Debug/net6.0/Parametr.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net6.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 = Parametr +build_property.ProjectDir = C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\Parametr\Parametr\ diff --git a/C#/Parametr/Parametr/obj/Debug/net6.0/Parametr.GlobalUsings.g.cs b/C#/Parametr/Parametr/obj/Debug/net6.0/Parametr.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/C#/Parametr/Parametr/obj/Debug/net6.0/Parametr.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#/Parametr/Parametr/obj/Debug/net6.0/Parametr.assets.cache b/C#/Parametr/Parametr/obj/Debug/net6.0/Parametr.assets.cache new file mode 100644 index 0000000..7bf9d05 Binary files /dev/null and b/C#/Parametr/Parametr/obj/Debug/net6.0/Parametr.assets.cache differ diff --git a/C#/Parametr/Parametr/obj/Debug/net6.0/Parametr.csproj.BuildWithSkipAnalyzers b/C#/Parametr/Parametr/obj/Debug/net6.0/Parametr.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/C#/Parametr/Parametr/obj/Debug/net6.0/Parametr.csproj.CoreCompileInputs.cache b/C#/Parametr/Parametr/obj/Debug/net6.0/Parametr.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..fc4c874 --- /dev/null +++ b/C#/Parametr/Parametr/obj/Debug/net6.0/Parametr.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +fd0a288330aca4b901a1aff763a085c2feee07d8 diff --git a/C#/Parametr/Parametr/obj/Debug/net6.0/Parametr.csproj.FileListAbsolute.txt b/C#/Parametr/Parametr/obj/Debug/net6.0/Parametr.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..4d3fdb4 --- /dev/null +++ b/C#/Parametr/Parametr/obj/Debug/net6.0/Parametr.csproj.FileListAbsolute.txt @@ -0,0 +1,14 @@ +C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\Parametr\Parametr\obj\Debug\net6.0\Parametr.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\Parametr\Parametr\obj\Debug\net6.0\Parametr.AssemblyInfoInputs.cache +C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\Parametr\Parametr\obj\Debug\net6.0\Parametr.AssemblyInfo.cs +C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\Parametr\Parametr\obj\Debug\net6.0\Parametr.csproj.CoreCompileInputs.cache +C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\Parametr\Parametr\bin\Debug\net6.0\Parametr.exe +C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\Parametr\Parametr\bin\Debug\net6.0\Parametr.deps.json +C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\Parametr\Parametr\bin\Debug\net6.0\Parametr.runtimeconfig.json +C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\Parametr\Parametr\bin\Debug\net6.0\Parametr.dll +C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\Parametr\Parametr\bin\Debug\net6.0\Parametr.pdb +C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\Parametr\Parametr\obj\Debug\net6.0\Parametr.dll +C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\Parametr\Parametr\obj\Debug\net6.0\refint\Parametr.dll +C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\Parametr\Parametr\obj\Debug\net6.0\Parametr.pdb +C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\Parametr\Parametr\obj\Debug\net6.0\Parametr.genruntimeconfig.cache +C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\Parametr\Parametr\obj\Debug\net6.0\ref\Parametr.dll diff --git a/C#/Parametr/Parametr/obj/Debug/net6.0/Parametr.dll b/C#/Parametr/Parametr/obj/Debug/net6.0/Parametr.dll new file mode 100644 index 0000000..856476b Binary files /dev/null and b/C#/Parametr/Parametr/obj/Debug/net6.0/Parametr.dll differ diff --git a/C#/Parametr/Parametr/obj/Debug/net6.0/Parametr.genruntimeconfig.cache b/C#/Parametr/Parametr/obj/Debug/net6.0/Parametr.genruntimeconfig.cache new file mode 100644 index 0000000..3cb2799 --- /dev/null +++ b/C#/Parametr/Parametr/obj/Debug/net6.0/Parametr.genruntimeconfig.cache @@ -0,0 +1 @@ +a056352bc70140a5bdca0996bcf0538a89a925fb diff --git a/C#/Parametr/Parametr/obj/Debug/net6.0/Parametr.pdb b/C#/Parametr/Parametr/obj/Debug/net6.0/Parametr.pdb new file mode 100644 index 0000000..0fe3d89 Binary files /dev/null and b/C#/Parametr/Parametr/obj/Debug/net6.0/Parametr.pdb differ diff --git a/C#/Parametr/Parametr/obj/Debug/net6.0/apphost.exe b/C#/Parametr/Parametr/obj/Debug/net6.0/apphost.exe new file mode 100644 index 0000000..560d43c Binary files /dev/null and b/C#/Parametr/Parametr/obj/Debug/net6.0/apphost.exe differ diff --git a/C#/Parametr/Parametr/obj/Debug/net6.0/ref/Parametr.dll b/C#/Parametr/Parametr/obj/Debug/net6.0/ref/Parametr.dll new file mode 100644 index 0000000..4dab652 Binary files /dev/null and b/C#/Parametr/Parametr/obj/Debug/net6.0/ref/Parametr.dll differ diff --git a/C#/Parametr/Parametr/obj/Debug/net6.0/refint/Parametr.dll b/C#/Parametr/Parametr/obj/Debug/net6.0/refint/Parametr.dll new file mode 100644 index 0000000..4dab652 Binary files /dev/null and b/C#/Parametr/Parametr/obj/Debug/net6.0/refint/Parametr.dll differ diff --git a/C#/Parametr/Parametr/obj/Parametr.csproj.nuget.dgspec.json b/C#/Parametr/Parametr/obj/Parametr.csproj.nuget.dgspec.json new file mode 100644 index 0000000..996ca4f --- /dev/null +++ b/C#/Parametr/Parametr/obj/Parametr.csproj.nuget.dgspec.json @@ -0,0 +1,63 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\C#\\Parametr\\Parametr\\Parametr.csproj": {} + }, + "projects": { + "C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\C#\\Parametr\\Parametr\\Parametr.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\C#\\Parametr\\Parametr\\Parametr.csproj", + "projectName": "Parametr", + "projectPath": "C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\C#\\Parametr\\Parametr\\Parametr.csproj", + "packagesPath": "C:\\Users\\lukas\\.nuget\\packages\\", + "outputPath": "C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\C#\\Parametr\\Parametr\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\lukas\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.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#/Parametr/Parametr/obj/Parametr.csproj.nuget.g.props b/C#/Parametr/Parametr/obj/Parametr.csproj.nuget.g.props new file mode 100644 index 0000000..4270eed --- /dev/null +++ b/C#/Parametr/Parametr/obj/Parametr.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#/Parametr/Parametr/obj/Parametr.csproj.nuget.g.targets b/C#/Parametr/Parametr/obj/Parametr.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/C#/Parametr/Parametr/obj/Parametr.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/C#/Parametr/Parametr/obj/project.assets.json b/C#/Parametr/Parametr/obj/project.assets.json new file mode 100644 index 0000000..b3b82ce --- /dev/null +++ b/C#/Parametr/Parametr/obj/project.assets.json @@ -0,0 +1,68 @@ +{ + "version": 3, + "targets": { + "net6.0": {} + }, + "libraries": {}, + "projectFileDependencyGroups": { + "net6.0": [] + }, + "packageFolders": { + "C:\\Users\\lukas\\.nuget\\packages\\": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\C#\\Parametr\\Parametr\\Parametr.csproj", + "projectName": "Parametr", + "projectPath": "C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\C#\\Parametr\\Parametr\\Parametr.csproj", + "packagesPath": "C:\\Users\\lukas\\.nuget\\packages\\", + "outputPath": "C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\C#\\Parametr\\Parametr\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\lukas\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.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#/Parametr/Parametr/obj/project.nuget.cache b/C#/Parametr/Parametr/obj/project.nuget.cache new file mode 100644 index 0000000..10f41d5 --- /dev/null +++ b/C#/Parametr/Parametr/obj/project.nuget.cache @@ -0,0 +1,8 @@ +{ + "version": 2, + "dgSpecHash": "ItIvtNWftMT9BjmjG0tKuYCeLUo9TQrhFu6LT1vlJMyneXEnDlWJB9FTfu6ZhZUy3mmTw2p5Lkw6vbkVO8z9UA==", + "success": true, + "projectFilePath": "C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\C#\\Parametr\\Parametr\\Parametr.csproj", + "expectedPackageFiles": [], + "logs": [] +} \ No newline at end of file diff --git a/LukanNUnitProject/LukanPOM/.vs/LukanPOM/v17/TestStore/0/000.testlog b/LukanNUnitProject/LukanPOM/.vs/LukanPOM/v17/TestStore/0/000.testlog index 564fccd..7a99b32 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