Skip to content

Commit

Permalink
Remove the Visual Studio Extension VSIX (#16)
Browse files Browse the repository at this point in the history
* Remove VSIX

* Switch codeql build to ubuntu and drop build tools 2019 installation
  • Loading branch information
rjmurillo authored May 30, 2024
1 parent 3186cda commit 4a90b63
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 172 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
# - https://gh.io/supported-runners-and-hardware-resources
# - https://gh.io/using-larger-runners (GitHub.com only)
# Consider using larger runners or machines with greater resources for possible analysis time improvements.
runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'windows-latest' }}
runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}
timeout-minutes: ${{ (matrix.language == 'swift' && 120) || 360 }}
permissions:
# required for all workflows
Expand Down Expand Up @@ -55,10 +55,6 @@ jobs:
# If you are analyzing a compiled language, you can modify the 'build-mode' for that language to customize how
# your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages
steps:
# This is needed for VSIX creation and must be run on Windows
- name: Install VS2019 build tools
run: choco install visualstudio2019buildtools

- name: Checkout repository
uses: actions/checkout@v4

Expand Down
14 changes: 4 additions & 10 deletions Moq.Analyzers.sln
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.29123.88
# Visual Studio Version 17
VisualStudioVersion = 17.10.34928.147
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Moq.Analyzers", "Source\Moq.Analyzers\Moq.Analyzers.csproj", "{41ECC571-F586-460A-9BED-23528C8210C4}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Moq.Analyzers", "Source\Moq.Analyzers\Moq.Analyzers.csproj", "{41ECC571-F586-460A-9BED-23528C8210C4}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Moq.Analyzers.Test", "Source\Moq.Analyzers.Test\Moq.Analyzers.Test.csproj", "{D2348836-7129-4BE5-8AE6-D05FC8C28FC1}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Moq.Analyzers.Vsix", "Source\Moq.Analyzers.Vsix\Moq.Analyzers.Vsix.csproj", "{6C178A5C-B77B-484D-AD33-38E24B76FF35}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Moq.Analyzers.Test", "Source\Moq.Analyzers.Test\Moq.Analyzers.Test.csproj", "{D2348836-7129-4BE5-8AE6-D05FC8C28FC1}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand All @@ -23,10 +21,6 @@ Global
{D2348836-7129-4BE5-8AE6-D05FC8C28FC1}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D2348836-7129-4BE5-8AE6-D05FC8C28FC1}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D2348836-7129-4BE5-8AE6-D05FC8C28FC1}.Release|Any CPU.Build.0 = Release|Any CPU
{6C178A5C-B77B-484D-AD33-38E24B76FF35}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{6C178A5C-B77B-484D-AD33-38E24B76FF35}.Debug|Any CPU.Build.0 = Debug|Any CPU
{6C178A5C-B77B-484D-AD33-38E24B76FF35}.Release|Any CPU.ActiveCfg = Release|Any CPU
{6C178A5C-B77B-484D-AD33-38E24B76FF35}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
29 changes: 0 additions & 29 deletions Source/Moq.Analyzers.Vsix/LICENSE

This file was deleted.

101 changes: 0 additions & 101 deletions Source/Moq.Analyzers.Vsix/Moq.Analyzers.Vsix.csproj

This file was deleted.

27 changes: 0 additions & 27 deletions Source/Moq.Analyzers.Vsix/source.extension.vsixmanifest

This file was deleted.

0 comments on commit 4a90b63

Please sign in to comment.