gitea test

This commit is contained in:
Lukáš Kaňka 2023-08-28 22:05:11 +02:00
parent 8f4f4a9961
commit a19045ea77
11 changed files with 97 additions and 9 deletions

View File

@ -0,0 +1,26 @@
{
"version": "0.2.0",
"configurations": [
{
// Use IntelliSense to find out which attributes exist for C# debugging
// Use hover for the description of the existing attributes
// For further information visit https://github.com/dotnet/vscode-csharp/blob/main/debugger-launchjson.md
"name": ".NET Core Launch (console)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
// If you have changed target frameworks, make sure to update the program path.
"program": "${workspaceFolder}/bin/Debug/net6.0/LukanPOM.dll",
"args": [],
"cwd": "${workspaceFolder}",
// For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
"console": "internalConsole",
"stopAtEntry": false
},
{
"name": ".NET Core Attach",
"type": "coreclr",
"request": "attach"
}
]
}

View File

@ -14,5 +14,6 @@
"FunctionalTests"
]
}
]
],
"dotnet.defaultSolution": "LukanPOM.sln"
}

View File

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

View File

@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.5.002.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LukanPOM", "LukanPOM.csproj", "{F60BF93C-8413-4AAB-8726-810B224571B4}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{F60BF93C-8413-4AAB-8726-810B224571B4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F60BF93C-8413-4AAB-8726-810B224571B4}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F60BF93C-8413-4AAB-8726-810B224571B4}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F60BF93C-8413-4AAB-8726-810B224571B4}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {A74E4B5B-5DD5-426A-89A3-EAA9F8CEEEF0}
EndGlobalSection
EndGlobal

View File

@ -32,10 +32,5 @@ namespace LukanPOM.Tests
}
}
}

View File

@ -20,7 +20,7 @@ namespace LukanPOM.Tests
{
//private IWebDriver? _driver;
internal class Search : TestBase
{
[Test]

View File

@ -1 +1 @@
1152753646
2145957209