diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index ef60856..4eceea6 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -82,7 +82,7 @@ jobs: - name: Tag and release if: ${{ github.event_name == 'workflow_dispatch' || contains(github.event.head_commit.message, '[release]') }} id: tag_release - uses: softprops/action-gh-release@v2 + uses: softprops/action-gh-release@v3 with: body: release ${{ needs.build.outputs.version }} generate_release_notes: true diff --git a/CommandTableInfo.sln b/CommandTableInfo.sln index af912e1..b540eca 100644 --- a/CommandTableInfo.sln +++ b/CommandTableInfo.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 15 VisualStudioVersion = 15.0.27608.3002 @@ -19,8 +19,10 @@ Global GlobalSection(ProjectConfigurationPlatforms) = postSolution {F484F288-F083-45BA-B96D-C4D96C22F565}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {F484F288-F083-45BA-B96D-C4D96C22F565}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F484F288-F083-45BA-B96D-C4D96C22F565}.Debug|Any CPU.Deploy.0 = Debug|Any CPU {F484F288-F083-45BA-B96D-C4D96C22F565}.Release|Any CPU.ActiveCfg = Release|Any CPU {F484F288-F083-45BA-B96D-C4D96C22F565}.Release|Any CPU.Build.0 = Release|Any CPU + {F484F288-F083-45BA-B96D-C4D96C22F565}.Release|Any CPU.Deploy.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/CommandTableInfo.csproj b/src/CommandTableInfo.csproj index ae84c52..2e22760 100644 --- a/src/CommandTableInfo.csproj +++ b/src/CommandTableInfo.csproj @@ -1,139 +1,79 @@ - - + + - $(VisualStudioVersion) - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - - - true - - - - false - - - - - - - - Debug - AnyCPU - 2.0 - {82b43b9b-a64c-4715-b499-d71e9ca2bd60};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - {F484F288-F083-45BA-B96D-C4D96C22F565} - Library - Properties - CommandTableInfo - CommandTableInfo - v4.8 + net48 + enable + latest + true + true true - true - true - true - true - false - Program - $(DevEnvDir)devenv.exe - /rootsuffix Exp - - - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - - - pdbonly - true - bin\Release\ - TRACE - prompt - 4 + true + true + - - - - - + + + + + + True True source.extension.vsixmanifest - - CommandTableExplorerControl.xaml - - - - - - - True + True + True VSCommandTable.vsct + + + + + Menus.ctmenu + VsctGenerator + VSCommandTable.cs + + + + - - Resources\LICENSE - true - Designer VsixManifestGenerator source.extension1.cs + + + + + Resources\LICENSE + true + + + true + + + + - - - - - - - - - true - - - Menus.ctmenu - VsctGenerator - VSCommandTable.cs - - - - - Designer - MSBuild:Compile - + - - 17.0.32112.339 - - - 17.14.2120 - runtime; build; native; contentfiles; analyzers + + + runtime; build; native; contentfiles; analyzers; buildtransitive all - - - + \ No newline at end of file diff --git a/src/Properties/AssemblyInfo.cs b/src/Properties/AssemblyInfo.cs deleted file mode 100644 index d2b172e..0000000 --- a/src/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System.Reflection; -using System.Runtime.InteropServices; -using CommandTableInfo; -using Microsoft.VisualStudio.Shell; - -[assembly: AssemblyTitle(Vsix.Name)] -[assembly: AssemblyDescription(Vsix.Description)] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany(Vsix.Author)] -[assembly: AssemblyProduct(Vsix.Name)] -[assembly: AssemblyCopyright(Vsix.Author)] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] -[assembly: ProvideCodeBase()] - -[assembly: ComVisible(false)] - -[assembly: AssemblyVersion(Vsix.Version)] -[assembly: AssemblyFileVersion(Vsix.Version)]