Browse Source

Rename ILSpy.AddIn.VS17 to ILSpy.AddIn.VS2022

pull/2525/head
Andreas Weizel 4 years ago
parent
commit
075c447954
  1. 2
      .github/workflows/build-ilspy.yml
  2. 2
      BuildTools/update-assemblyinfo.ps1
  3. 2
      ILSpy.AddIn.Shared/Guids.cs
  4. 0
      ILSpy.AddIn.VS2022/Decompiler/Dummy.cs
  5. 0
      ILSpy.AddIn.VS2022/ILSpy-Large.ico
  6. 2
      ILSpy.AddIn.VS2022/ILSpy.AddIn.VS2022.csproj
  7. 0
      ILSpy.AddIn.VS2022/ILSpyAddIn.en-US.vsct
  8. 0
      ILSpy.AddIn.VS2022/ILSpyAddIn.vsct
  9. 0
      ILSpy.AddIn.VS2022/ILSpyAddIn.zh-Hans.vsct
  10. 0
      ILSpy.AddIn.VS2022/Key.snk
  11. 0
      ILSpy.AddIn.VS2022/Properties/AssemblyInfo.cs
  12. 0
      ILSpy.AddIn.VS2022/Properties/launchSettings.json
  13. 0
      ILSpy.AddIn.VS2022/README.md
  14. 0
      ILSpy.AddIn.VS2022/Resources/Images.png
  15. 0
      ILSpy.AddIn.VS2022/Resources/Package.ico
  16. 2
      ILSpy.AddIn.VS2022/source.extension.vsixmanifest.template
  17. 0
      ILSpy.AddIn.VS2022/zh-Hans/extension.vsixlangpack
  18. 1
      ILSpy.AddIn/ILSpy.AddIn.csproj
  19. 2
      ILSpy.sln

2
.github/workflows/build-ilspy.yml

@ -102,7 +102,7 @@ jobs: @@ -102,7 +102,7 @@ jobs:
uses: actions/upload-artifact@v2
with:
name: ILSpy VS Addin for VS 2022 ${{ steps.version.outputs.ILSPY_VERSION_NUMBER }} (${{ matrix.configuration }})
path: ILSpy.AddIn.VS17\bin\${{ matrix.configuration }}\net472\*.vsix
path: ILSpy.AddIn.VS2022\bin\${{ matrix.configuration }}\net472\*.vsix
if-no-files-found: error
- name: Upload NuGet release build artifacts

2
BuildTools/update-assemblyinfo.ps1

@ -76,7 +76,7 @@ $templateFiles = ( @@ -76,7 +76,7 @@ $templateFiles = (
@{Input="ICSharpCode.Decompiler/ICSharpCode.Decompiler.nuspec.template"; Output="ICSharpCode.Decompiler/ICSharpCode.Decompiler.nuspec"},
@{Input="ILSpy/Properties/app.config.template"; Output = "ILSpy/app.config"},
@{Input="ILSpy.AddIn/source.extension.vsixmanifest.template"; Output = "ILSpy.AddIn/source.extension.vsixmanifest"},
@{Input="ILSpy.AddIn.VS17/source.extension.vsixmanifest.template"; Output = "ILSpy.AddIn.VS17/source.extension.vsixmanifest"}
@{Input="ILSpy.AddIn.VS2022/source.extension.vsixmanifest.template"; Output = "ILSpy.AddIn.VS2022/source.extension.vsixmanifest"}
);
$appxmanifestFiles = (

2
ILSpy.AddIn.Shared/Guids.cs

@ -6,7 +6,7 @@ namespace ICSharpCode.ILSpy.AddIn @@ -6,7 +6,7 @@ namespace ICSharpCode.ILSpy.AddIn
{
static class GuidList
{
#if VS17
#if VS2022
public const string guidILSpyAddInPkgString = "ebf12ca7-a1fd-4aee-a894-4a0c5682fc2f";
#else
public const string guidILSpyAddInPkgString = "a9120dbe-164a-4891-842f-fb7829273838";

0
ILSpy.AddIn.VS17/Decompiler/Dummy.cs → ILSpy.AddIn.VS2022/Decompiler/Dummy.cs

0
ILSpy.AddIn.VS17/ILSpy-Large.ico → ILSpy.AddIn.VS2022/ILSpy-Large.ico

Before

Width:  |  Height:  |  Size: 58 KiB

After

Width:  |  Height:  |  Size: 58 KiB

2
ILSpy.AddIn.VS17/ILSpy.AddIn.VS17.csproj → ILSpy.AddIn.VS2022/ILSpy.AddIn.VS2022.csproj

@ -15,7 +15,7 @@ @@ -15,7 +15,7 @@
<EnableDefaultItems>False</EnableDefaultItems>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<DefineConstants>TRACE;VSADDIN;VS17</DefineConstants>
<DefineConstants>TRACE;VSADDIN;VS2022</DefineConstants>
<SignAssembly>True</SignAssembly>
<AssemblyOriginatorKeyFile>Key.snk</AssemblyOriginatorKeyFile>

0
ILSpy.AddIn.VS17/ILSpyAddIn.en-US.vsct → ILSpy.AddIn.VS2022/ILSpyAddIn.en-US.vsct

0
ILSpy.AddIn.VS17/ILSpyAddIn.vsct → ILSpy.AddIn.VS2022/ILSpyAddIn.vsct

0
ILSpy.AddIn.VS17/ILSpyAddIn.zh-Hans.vsct → ILSpy.AddIn.VS2022/ILSpyAddIn.zh-Hans.vsct

0
ILSpy.AddIn.VS17/Key.snk → ILSpy.AddIn.VS2022/Key.snk

0
ILSpy.AddIn.VS17/Properties/AssemblyInfo.cs → ILSpy.AddIn.VS2022/Properties/AssemblyInfo.cs

0
ILSpy.AddIn.VS17/Properties/launchSettings.json → ILSpy.AddIn.VS2022/Properties/launchSettings.json

0
ILSpy.AddIn.VS17/README.md → ILSpy.AddIn.VS2022/README.md

0
ILSpy.AddIn.VS17/Resources/Images.png → ILSpy.AddIn.VS2022/Resources/Images.png

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

0
ILSpy.AddIn.VS17/Resources/Package.ico → ILSpy.AddIn.VS2022/Resources/Package.ico

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 18 KiB

2
ILSpy.AddIn.VS17/source.extension.vsixmanifest.template → ILSpy.AddIn.VS2022/source.extension.vsixmanifest.template

@ -17,7 +17,7 @@ @@ -17,7 +17,7 @@
<Dependency Id="Microsoft.Framework.NDP" DisplayName="Microsoft .NET Framework" d:Source="Manual" Version="[4.5,)" />
</Dependencies>
<Assets>
<Asset Type="Microsoft.VisualStudio.MefComponent" d:Source="Project" d:ProjectName="ILSpy.AddIn.VS17" Path="|ILSpy.AddIn.VS17|"/>
<Asset Type="Microsoft.VisualStudio.MefComponent" d:Source="Project" d:ProjectName="ILSpy.AddIn.VS2022" Path="|ILSpy.AddIn.VS2022|"/>
</Assets>
<Prerequisites>
<Prerequisite Id="Microsoft.VisualStudio.Component.CoreEditor" Version="[17.0,)" DisplayName="Visual Studio core editor" />

0
ILSpy.AddIn.VS17/zh-Hans/extension.vsixlangpack → ILSpy.AddIn.VS2022/zh-Hans/extension.vsixlangpack

1
ILSpy.AddIn/ILSpy.AddIn.csproj

@ -168,6 +168,7 @@ @@ -168,6 +168,7 @@
<UseCodebase>true</UseCodebase>
<RunAnalyzersDuringBuild>false</RunAnalyzersDuringBuild>
<RunAnalyzersDuringLiveAnalysis>true</RunAnalyzersDuringLiveAnalysis>
<Product>ILSpy.AddIn for Visual Studio 2017/2019</Product>
</PropertyGroup>
<Import Project="..\ILSpy.AddIn.Shared\ILSpy.AddIn.Shared.projitems" Label="Shared" />

2
ILSpy.sln

@ -45,7 +45,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ICSharpCode.Decompiler.Powe @@ -45,7 +45,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ICSharpCode.Decompiler.Powe
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "ILSpy.AddIn.Shared", "ILSpy.AddIn.Shared\ILSpy.AddIn.Shared.shproj", "{ACAB1E5D-B3DF-4092-AA72-692F8341E520}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ILSpy.AddIn.VS17", "ILSpy.AddIn.VS17\ILSpy.AddIn.VS17.csproj", "{09A03980-D14A-4705-A38C-741AD7166DEE}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ILSpy.AddIn.VS2022", "ILSpy.AddIn.VS2022\ILSpy.AddIn.VS2022.csproj", "{09A03980-D14A-4705-A38C-741AD7166DEE}"
EndProject
Global
GlobalSection(SharedMSBuildProjectFiles) = preSolution

Loading…
Cancel
Save