Commit 611bb66
[create-vsix] Allow overriding the created .vsix filename (#577)
We want to use the `make create-vsix` target to create the commercial
`Xamarin.Android.Sdk.vsix` file, but we want it to have a different
filename, matching commit + commit count information from the internal
`monodroid` repo, not the xamarin-android repo.
Uppdate `create-vsix.csproj` to accept a new `$(VsixPath)` property,
which is the path of the .vsix file to create.
Update the default `$(VsixPath)` filename to be
`Xamarin.Android.Sdk-OSS*`, so that if a customer downloads both a
Jenkins OSS build and a commercial .vsix build, it will be easier to
differentiate between them. (The `.vsix` package name information is
*not* changed, thus it is not possible to concurrently have both the
commercial and OSS builds installed in the same VS 2017 SKU.)
Update the `make create-vsix` target so that the output path and other
MSBuild properties can more easily be overridden:
make create-vsix CONFIGURATIONS=Debug VSIX=`pwd`/MyNewPackage.vsix
The `$(VSIX)` **make**(1) variable sets the `$(VsixPath)` MSBuild
property.
*Note*: the current-working-directory for `make create-vsix` is
`build-tools/create-vsix`; consequently, this command:
make create-vsix CONFIGURATIONS=Debug VSIX=MyNewPackage.vsix
will create `./build-tools/create-vsix/MyNewPackage.vsix`, *not*
`./MyNewPackage.vsix`.1 parent d63b362 commit 611bb66
3 files changed
Lines changed: 25 additions & 44 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
7 | 7 | | |
8 | 8 | | |
9 | 9 | | |
10 | | - | |
| 10 | + | |
11 | 11 | | |
12 | 12 | | |
13 | 13 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | | - | |
4 | | - | |
5 | | - | |
6 | | - | |
| 3 | + | |
7 | 4 | | |
8 | 5 | | |
9 | 6 | | |
| |||
81 | 78 | | |
82 | 79 | | |
83 | 80 | | |
84 | | - | |
| 81 | + | |
85 | 82 | | |
86 | 83 | | |
87 | 84 | | |
| |||
94 | 91 | | |
95 | 92 | | |
96 | 93 | | |
97 | | - | |
98 | | - | |
99 | | - | |
100 | | - | |
101 | | - | |
102 | | - | |
103 | | - | |
104 | | - | |
105 | | - | |
106 | | - | |
107 | | - | |
108 | | - | |
109 | | - | |
110 | | - | |
111 | | - | |
112 | | - | |
113 | | - | |
114 | | - | |
115 | | - | |
116 | | - | |
117 | | - | |
118 | | - | |
119 | | - | |
120 | | - | |
121 | | - | |
122 | | - | |
123 | | - | |
124 | | - | |
125 | | - | |
126 | 94 | | |
127 | | - | |
| 95 | + | |
128 | 96 | | |
129 | 97 | | |
130 | 98 | | |
131 | 99 | | |
132 | 100 | | |
133 | 101 | | |
134 | | - | |
| 102 | + | |
135 | 103 | | |
136 | 104 | | |
137 | | - | |
138 | | - | |
139 | | - | |
140 | | - | |
| 105 | + | |
| 106 | + | |
141 | 107 | | |
142 | | - | |
| 108 | + | |
143 | 109 | | |
144 | 110 | | |
| 111 | + | |
| 112 | + | |
| 113 | + | |
| 114 | + | |
| 115 | + | |
| 116 | + | |
| 117 | + | |
| 118 | + | |
145 | 119 | | |
146 | 120 | | |
147 | | - | |
| 121 | + | |
148 | 122 | | |
149 | 123 | | |
150 | 124 | | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
130 | 130 | | |
131 | 131 | | |
132 | 132 | | |
133 | | - | |
| 133 | + | |
| 134 | + | |
| 135 | + | |
| 136 | + | |
| 137 | + | |
| 138 | + | |
| 139 | + | |
| 140 | + | |
134 | 141 | | |
135 | 142 | | |
136 | 143 | | |
| |||
0 commit comments