Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Codespace tefs improved waffle gvqj5xjwr5hvr5p #5

Open
wants to merge 24 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
be731b5
All from VSCode | .NET Course| Worker QueueService
tefs Sep 21, 2022
f8bc2fb
MyMicroService implemented and deployed
tefs Sep 24, 2022
c9dd609
[todo changes ]
tefs Sep 24, 2022
ac898a6
[todo]
tefs Sep 24, 2022
a154e66
CountIPAddresses implemented and tested
tefs Sep 25, 2022
13ac2db
Functionalities implemented and tested
tefs Oct 1, 2022
a0c1eda
Scramblies implemented and Tested
tefs Oct 1, 2022
73051de
[bugFix related with previous commit]
tefs Oct 2, 2022
c6bdbc7
Add Microservice Test project
tefs Oct 4, 2022
e143127
Movezeros feature implemented and tested
tefs Oct 4, 2022
3fb2da4
ToJadenCase implemeted and tested
tefs Nov 21, 2022
eb22c6f
Pangram feature implemented and tested
tefs Nov 22, 2022
68f34a1
OrderWords implemented and tested
tefs Nov 22, 2022
5355acc
PerfectSquare feature implemented and tested
tefs Nov 23, 2022
240ad99
BigNmbersAdd feature implemented and tested
tefs Nov 23, 2022
b4ca8e4
ArrayDiff feature implemented and tested
tefs Nov 24, 2022
15ad509
SplitString feature implemented and tested
tefs Nov 24, 2022
dc8d96a
ReverseWords feature implemented and and tested
tefs Nov 24, 2022
51676ce
ToWeirdCase feature implemented and tested
tefs Dec 1, 2022
f3c39db
DuplicateEncode feature implemented and tested
tefs Dec 1, 2022
a2b9570
AlphabetPosition1 feature implemented and tested
tefs Dec 5, 2022
d439050
GetIntegersFromList implemented and tested
tefs Dec 16, 2022
b21d83d
RepeatStr implemented and tested
tefs Dec 20, 2022
cf0f79d
Pending changes exported from your codespace
tefs Dec 22, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -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/OmniSharp/omnisharp-vscode/blob/master/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}/Start/Overview/MyConsoleAppTests/bin/Debug/net6.0/MyConsoleAppTests.dll",
"args": [],
"cwd": "${workspaceFolder}/Start/Overview/MyConsoleAppTests",
// 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"
}
]
}
41 changes: 41 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/Start/Overview/MyConsoleAppTests/MyConsoleAppTests.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "publish",
"command": "dotnet",
"type": "process",
"args": [
"publish",
"${workspaceFolder}/Start/Overview/MyConsoleAppTests/MyConsoleAppTests.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "watch",
"command": "dotnet",
"type": "process",
"args": [
"watch",
"run",
"--project",
"${workspaceFolder}/Start/Overview/MyConsoleAppTests/MyConsoleAppTests.csproj"
],
"problemMatcher": "$msCompile"
}
]
}
10 changes: 10 additions & 0 deletions Start/Overview/MyConsoleApp/MyConsoleApp.csproj
Original file line number Diff line number Diff line change
@@ -1,10 +1,20 @@

<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<StartupObject>MyConsoleApp.Program</StartupObject>

</PropertyGroup>

<ItemGroup>
<PackageReference Include="microsoft.net.test.sdk" Version="17.3.1" />
<PackageReference Include="Nunit" Version="3.13.3" />
<PackageReference Include="Nunit3TestAdapter" Version="4.2.1" />
</ItemGroup>

</Project>

Loading