Skip to content

Commit 08137e3

Browse files
committed
Move addin information to manifest
1 parent ac2fe82 commit 08137e3

File tree

4 files changed

+28
-19
lines changed

4 files changed

+28
-19
lines changed

VisualStudioMac.SolutionTreeFilter/Constants.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
{
33
public static class Constants
44
{
5-
internal const string Version = "17.3.1";
65
internal const string SolutionFilterPadId = "VisualStudioMac.SolutionTreeFilter.Gui.FilterPad";
76
}
87
}

VisualStudioMac.SolutionTreeFilter/Properties/AddinInfo.cs

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@
22
using Mono.Addins.Description;
33
using VisualStudioMac.SolutionTreeFilter;
44
using System.Runtime.Versioning;
5+
using System.Reflection;
56

6-
[assembly: Addin(
7-
"SolutionTreeFilter",
8-
Namespace = "VisualStudioMac",
9-
Version = Constants.Version,
10-
Category = "IDE extensions"
11-
)]
7+
//[assembly: Addin(
8+
// "SolutionTreeFilter",
9+
// Namespace = "VisualStudioMac",
10+
// Version = Constants.Version,
11+
// Category = "IDE extensions")]
1212

13-
[assembly: AddinName("SolutionTree Filter")]
14-
[assembly: AddinDescription("This extension adds a Pad which allows you to filter the solution tree by multiple search terms.\n\nby Ivo Krugers")]
15-
[assembly: AddinAuthor("Ivo Krugers")]
16-
[assembly: AddinUrl("https://github.com/IvoKrugers/VisualStudioMac.SolutionTreeFilter")]
13+
//[assembly: AddinName("SolutionTree Filter")]
14+
//[assembly: AddinDescription("This extension adds a Pad which allows you to filter the solution tree by multiple search terms.\n\nby Ivo Krugers")]
15+
//[assembly: AddinAuthor("Ivo Krugers")]
16+
//[assembly: AddinUrl("https://github.com/IvoKrugers/VisualStudioMac.SolutionTreeFilter")]
1717

1818
[assembly: AddinDependency("::MonoDevelop.Core", MonoDevelop.BuildInfo.Version)]
1919
[assembly: AddinDependency("::MonoDevelop.Ide", MonoDevelop.BuildInfo.Version)]

VisualStudioMac.SolutionTreeFilter/Properties/Manifest.addin.xml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<ExtensionModel>
2+
3+
<Addin name = "SolutionTree Filter"
4+
id = "SolutionTreeFilter"
5+
namespace = "VisualStudioMac"
6+
author = "Ivo Krugers"
7+
copyright = "MIT X11"
8+
url = "https://github.com/IvoKrugers/VisualStudioMac.SolutionTreeFilter"
9+
description = "This extension adds a Pad which allows you to filter the solution tree by multiple search terms.\n\nby Ivo Krugers"
10+
category = "IDE extensions"
11+
version = "17.3.3">
12+
313
<Runtime>
414
<Import assembly="VisualStudioMac.SolutionTreeFilter.dll" />
515
</Runtime>
@@ -71,4 +81,4 @@
7181
</Condition>-->
7282
</Extension>
7383

74-
</ExtensionModel>
84+
</Addin>

pack.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ mono /Applications/Visual\ Studio.app/Contents/Resources/lib/monodevelop/bin/vst
1616
# Uninstall
1717
/Applications/Visual\ Studio\ \(Preview\).app/Contents/MacOS/vstool setup uninstall VisualStudioMac.SolutionTreeFilter -y
1818

19-
# Install
20-
for filename in *.mpack;
21-
do
22-
echo "$filename"
23-
/Applications/Visual\ Studio\ \(Preview\).app/Contents/MacOS/vstool setup install "$PROJECTFOLDER/$filename" -y
24-
done
19+
# # Install
20+
# for filename in *.mpack;
21+
# do
22+
# echo "$filename"
23+
# /Applications/Visual\ Studio\ \(Preview\).app/Contents/MacOS/vstool setup install "$PROJECTFOLDER/$filename" -y
24+
# done

0 commit comments

Comments
 (0)