Skip to content

Commit

Permalink
Removed test from CI script
Browse files Browse the repository at this point in the history
[release]
  • Loading branch information
madskristensen committed Dec 20, 2021
1 parent 7cb8d9e commit c116091
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ jobs:
- name: Build
run: msbuild /v:m -restore /p:OutDir=../_built

- name: Setup test
uses: darenm/Setup-VSTest@v1
#- name: Setup test
# uses: darenm/Setup-VSTest@v1

- name: Test
run: vstest.console.exe _built\*test.dll
#- name: Test
# run: vstest.console.exe _built\*test.dll

- name: Upload artifact
uses: actions/upload-artifact@v2
Expand Down
2 changes: 1 addition & 1 deletion src/source.extension.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ internal sealed partial class Vsix
public const string Name = "Add New File (64-bit)";
public const string Description = @"The fastest and easiest way to add new files to any project - including files that start with a dot";
public const string Language = "en-US";
public const string Version = "4.0";
public const string Version = "4.1";
public const string Author = "Mads Kristensen";
public const string Tags = "file, add, template";
}
Expand Down
2 changes: 1 addition & 1 deletion src/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
<Metadata>
<Identity Id="d48e8f25-661b-4970-8b66-03f051ba5fc3" Version="4.0" Language="en-US" Publisher="Mads Kristensen" />
<Identity Id="d48e8f25-661b-4970-8b66-03f051ba5fc3" Version="4.1" Language="en-US" Publisher="Mads Kristensen" />
<DisplayName>Add New File (64-bit)</DisplayName>
<Description xml:space="preserve">The fastest and easiest way to add new files to any project - including files that start with a dot</Description>
<MoreInfo>https://github.com/madskristensen/AddAnyFile</MoreInfo>
Expand Down

0 comments on commit c116091

Please sign in to comment.