Skip to content

Commit 572aa5c

Browse files
committed
[Refactor] Added azure pipeline vscode extension
1 parent b5958a1 commit 572aa5c

File tree

4 files changed

+10
-9
lines changed

4 files changed

+10
-9
lines changed

.vscode/extensions.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
"fernandoescolar.vscode-solution-explorer",
1111
"ms-dotnettools.csharp",
1212
"ionide.ionide-paket",
13-
"eridem.vscode-nupkg"
13+
"eridem.vscode-nupkg",
14+
"ms-azure-devops.azure-pipelines"
1415
],
1516
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
1617
"unwantedRecommendations": [

ComponentBase.Tests/MyComponentTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ public void Setup()
1010
}
1111

1212
[Test]
13-
public void Test1()
13+
public void TestIfMethodReturnAString()
1414
{
1515
var obj = new MyComponent();
16-
Assert.AreEqual(obj.Method(), "This is a method");
16+
Assert.AreEqual("This is a method", obj.Method());
1717
}
1818
}
1919
}

nuget.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
<?xml version="1.0" encoding="utf-8"?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<configuration>
33
<packageSources>
44
<clear />
5-
<add key="opitblast" value="https://pkgs.dev.azure.com/opitblast/_packaging/opitblast/nuget/v3/index.json" />
65
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
6+
<add key="opitblast" value="https://pkgs.dev.azure.com/opitblast/_packaging/opitblast/nuget/v3/index.json" />
77
</packageSources>
88
</configuration>

paket.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
RESTRICTION: || (== net40) (== netcoreapp3.1)
1+
RESTRICTION: || (== netcoreapp3.1) (== netstandard2.0)
22
NUGET
33
remote: https://api.nuget.org/v3/index.json
4-
Microsoft.NETCore.Platforms (3.1.1) - restriction: || (&& (== net40) (>= net45)) (&& (== net40) (>= net46)) (&& (== net40) (>= net461)) (&& (== net40) (>= netcoreapp2.0)) (&& (== net40) (>= netstandard1.0)) (&& (== net40) (>= netstandard1.1)) (&& (== net40) (>= netstandard1.2)) (&& (== net40) (>= netstandard1.3)) (&& (== net40) (>= netstandard1.4)) (&& (== net40) (>= netstandard1.5)) (&& (== net40) (>= netstandard1.6)) (&& (== net40) (>= netstandard2.0)) (&& (== net40) (>= portable-net45+win8)) (&& (== net40) (>= portable-net45+win8+wp8+wpa81)) (&& (== net40) (>= portable-net45+win8+wpa81)) (&& (== net40) (>= uap10.0)) (&& (== net40) (>= uap10.1)) (&& (== net40) (>= win8)) (&& (== net40) (>= wp8)) (&& (== net40) (>= wpa81)) (== netcoreapp3.1)
4+
Microsoft.NETCore.Platforms (3.1.1)
55
NETStandard.Library (2.0.3)
6-
Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net40) (>= net45)) (&& (== net40) (>= net46)) (&& (== net40) (>= net461)) (&& (== net40) (>= netcoreapp2.0)) (&& (== net40) (>= netstandard1.0)) (&& (== net40) (>= netstandard1.1)) (&& (== net40) (>= netstandard1.2)) (&& (== net40) (>= netstandard1.3)) (&& (== net40) (>= netstandard1.4)) (&& (== net40) (>= netstandard1.5)) (&& (== net40) (>= netstandard1.6)) (&& (== net40) (>= netstandard2.0)) (&& (== net40) (>= portable-net45+win8)) (&& (== net40) (>= portable-net45+win8+wp8+wpa81)) (&& (== net40) (>= portable-net45+win8+wpa81)) (&& (== net40) (>= uap10.0)) (&& (== net40) (>= uap10.1)) (&& (== net40) (>= win8)) (&& (== net40) (>= wp8)) (&& (== net40) (>= wpa81)) (== netcoreapp3.1)
6+
Microsoft.NETCore.Platforms (>= 1.1)
77

88
GROUP Test
99
NUGET
@@ -99,7 +99,7 @@ NUGET
9999
System.ComponentModel.TypeConverter (>= 4.3) - restriction: && (< net35) (>= netstandard1.4) (< netstandard2.0)
100100
System.Reflection.TypeExtensions (>= 4.4) - restriction: && (< net35) (>= netstandard1.4) (< netstandard2.0)
101101
NUnit.ConsoleRunner (3.11.1)
102-
NUnit3TestAdapter (3.16.1)
102+
NUnit3TestAdapter (3.17)
103103
Microsoft.DotNet.InternalAbstractions (>= 1.0) - restriction: >= netcoreapp2.1
104104
System.ComponentModel.EventBasedAsync (>= 4.3) - restriction: >= netcoreapp2.1
105105
System.ComponentModel.TypeConverter (>= 4.3) - restriction: >= netcoreapp2.1

0 commit comments

Comments
 (0)