Skip to content

Commit 07dfb11

Browse files
committed
update to new NGitLab.Plus
1 parent 1f2bdf4 commit 07dfb11

File tree

13 files changed

+72
-20
lines changed

13 files changed

+72
-20
lines changed

README.md

+12
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,18 @@ If you create a personal access token (https://yourgitlaburl.com/profile/persona
5252

5353

5454
## What's new ?
55+
56+
**V1.0.189**
57+
* Fix Groups and Subgroups missing in Namespace [#53](https://github.com/maikebing/GitLab.VisualStudio/issues/53)
58+
* Fix Exception on Project Create [#52](https://github.com/maikebing/GitLab.VisualStudio/issues/52)
59+
60+
***Thanks [Rennerdo30](https://github.com/Rennerdo30)***
61+
62+
63+
**V1.0.183**
64+
65+
* Fix for " cannot connect to custom gitlab server with different port [#50](https://github.com/maikebing/GitLab.VisualStudio/issues/50)
66+
5567
**V1.0.160**
5668

5769
* Automatically detects the API version of Gitlab

src/GitLab.TeamFoundation.14/GitLab.TeamFoundation.14.csproj

+7-1
Original file line numberDiff line numberDiff line change
@@ -149,10 +149,14 @@
149149
<HintPath>..\..\packages\Microsoft.VisualStudio.Validation.14.1.111\lib\net45\Microsoft.VisualStudio.Validation.dll</HintPath>
150150
</Reference>
151151
<Reference Include="Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
152-
<HintPath>..\..\packages\Newtonsoft.Json.12.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
152+
<HintPath>..\..\packages\Newtonsoft.Json.12.0.2\lib\net45\Newtonsoft.Json.dll</HintPath>
153153
</Reference>
154154
<Reference Include="PresentationCore" />
155155
<Reference Include="PresentationFramework" />
156+
<Reference Include="stdole, Version=7.0.3300.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
157+
<HintPath>..\..\packages\stdole.7.0.3303\lib\net10\stdole.dll</HintPath>
158+
<EmbedInteropTypes>True</EmbedInteropTypes>
159+
</Reference>
156160
<Reference Include="System" />
157161
<Reference Include="System.ComponentModel.Composition" />
158162
<Reference Include="System.Core" />
@@ -234,8 +238,10 @@
234238
</PropertyGroup>
235239
<Error Condition="!Exists('..\..\packages\Microsoft.VisualStudio.Threading.Analyzers.15.8.132\build\Microsoft.VisualStudio.Threading.Analyzers.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\Microsoft.VisualStudio.Threading.Analyzers.15.8.132\build\Microsoft.VisualStudio.Threading.Analyzers.targets'))" />
236240
<Error Condition="!Exists('..\..\packages\LibGit2Sharp.NativeBinaries.2.0.267\build\net46\LibGit2Sharp.NativeBinaries.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\LibGit2Sharp.NativeBinaries.2.0.267\build\net46\LibGit2Sharp.NativeBinaries.props'))" />
241+
<Error Condition="!Exists('..\..\packages\Microsoft.VisualStudio.SDK.EmbedInteropTypes.15.0.16\build\Microsoft.VisualStudio.SDK.EmbedInteropTypes.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\Microsoft.VisualStudio.SDK.EmbedInteropTypes.15.0.16\build\Microsoft.VisualStudio.SDK.EmbedInteropTypes.targets'))" />
237242
</Target>
238243
<Import Project="..\..\packages\Microsoft.VisualStudio.Threading.Analyzers.15.8.132\build\Microsoft.VisualStudio.Threading.Analyzers.targets" Condition="Exists('..\..\packages\Microsoft.VisualStudio.Threading.Analyzers.15.8.132\build\Microsoft.VisualStudio.Threading.Analyzers.targets')" />
244+
<Import Project="..\..\packages\Microsoft.VisualStudio.SDK.EmbedInteropTypes.15.0.16\build\Microsoft.VisualStudio.SDK.EmbedInteropTypes.targets" Condition="Exists('..\..\packages\Microsoft.VisualStudio.SDK.EmbedInteropTypes.15.0.16\build\Microsoft.VisualStudio.SDK.EmbedInteropTypes.targets')" />
239245
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
240246
Other similar extension points exist, see Microsoft.Common.targets.
241247
<Target Name="BeforeBuild">

src/GitLab.TeamFoundation.14/packages.config

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<package id="LibGit2Sharp.NativeBinaries" version="2.0.267" targetFramework="net461" />
55
<package id="Microsoft.VisualStudio.Imaging" version="14.3.25407" targetFramework="net461" />
66
<package id="Microsoft.VisualStudio.OLE.Interop" version="7.10.6071" targetFramework="net461" />
7+
<package id="Microsoft.VisualStudio.SDK.EmbedInteropTypes" version="15.0.16" targetFramework="net461" />
78
<package id="Microsoft.VisualStudio.Shell.14.0" version="14.3.25407" targetFramework="net461" />
89
<package id="Microsoft.VisualStudio.Shell.Embeddable" version="14.3.25407" targetFramework="net461" />
910
<package id="Microsoft.VisualStudio.Shell.Immutable.10.0" version="10.0.30319" targetFramework="net461" />
@@ -22,5 +23,6 @@
2223
<package id="Microsoft.VisualStudio.Threading.Analyzers" version="15.8.132" targetFramework="net461" />
2324
<package id="Microsoft.VisualStudio.Utilities" version="14.3.25407" targetFramework="net461" />
2425
<package id="Microsoft.VisualStudio.Validation" version="14.1.111" targetFramework="net461" />
25-
<package id="Newtonsoft.Json" version="12.0.1" targetFramework="net461" />
26+
<package id="Newtonsoft.Json" version="12.0.2" targetFramework="net461" />
27+
<package id="stdole" version="7.0.3303" targetFramework="net461" />
2628
</packages>

src/GitLab.TeamFoundation.15/GitLab.TeamFoundation.15.csproj

+7-1
Original file line numberDiff line numberDiff line change
@@ -149,10 +149,14 @@
149149
<HintPath>..\..\packages\Microsoft.VisualStudio.Validation.14.1.111\lib\net45\Microsoft.VisualStudio.Validation.dll</HintPath>
150150
</Reference>
151151
<Reference Include="Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
152-
<HintPath>..\..\packages\Newtonsoft.Json.12.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
152+
<HintPath>..\..\packages\Newtonsoft.Json.12.0.2\lib\net45\Newtonsoft.Json.dll</HintPath>
153153
</Reference>
154154
<Reference Include="PresentationCore" />
155155
<Reference Include="PresentationFramework" />
156+
<Reference Include="stdole, Version=7.0.3300.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
157+
<HintPath>..\..\packages\stdole.7.0.3303\lib\net10\stdole.dll</HintPath>
158+
<EmbedInteropTypes>True</EmbedInteropTypes>
159+
</Reference>
156160
<Reference Include="System" />
157161
<Reference Include="System.ComponentModel.Composition" />
158162
<Reference Include="System.Core" />
@@ -282,8 +286,10 @@
282286
</PropertyGroup>
283287
<Error Condition="!Exists('..\..\packages\Microsoft.VisualStudio.Threading.Analyzers.15.8.132\build\Microsoft.VisualStudio.Threading.Analyzers.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\Microsoft.VisualStudio.Threading.Analyzers.15.8.132\build\Microsoft.VisualStudio.Threading.Analyzers.targets'))" />
284288
<Error Condition="!Exists('..\..\packages\LibGit2Sharp.NativeBinaries.2.0.267\build\net46\LibGit2Sharp.NativeBinaries.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\LibGit2Sharp.NativeBinaries.2.0.267\build\net46\LibGit2Sharp.NativeBinaries.props'))" />
289+
<Error Condition="!Exists('..\..\packages\Microsoft.VisualStudio.SDK.EmbedInteropTypes.15.0.16\build\Microsoft.VisualStudio.SDK.EmbedInteropTypes.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\Microsoft.VisualStudio.SDK.EmbedInteropTypes.15.0.16\build\Microsoft.VisualStudio.SDK.EmbedInteropTypes.targets'))" />
285290
</Target>
286291
<Import Project="..\..\packages\Microsoft.VisualStudio.Threading.Analyzers.15.8.132\build\Microsoft.VisualStudio.Threading.Analyzers.targets" Condition="Exists('..\..\packages\Microsoft.VisualStudio.Threading.Analyzers.15.8.132\build\Microsoft.VisualStudio.Threading.Analyzers.targets')" />
292+
<Import Project="..\..\packages\Microsoft.VisualStudio.SDK.EmbedInteropTypes.15.0.16\build\Microsoft.VisualStudio.SDK.EmbedInteropTypes.targets" Condition="Exists('..\..\packages\Microsoft.VisualStudio.SDK.EmbedInteropTypes.15.0.16\build\Microsoft.VisualStudio.SDK.EmbedInteropTypes.targets')" />
287293
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
288294
Other similar extension points exist, see Microsoft.Common.targets.
289295
<Target Name="BeforeBuild">

src/GitLab.TeamFoundation.15/packages.config

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<package id="LibGit2Sharp.NativeBinaries" version="2.0.267" targetFramework="net461" />
55
<package id="Microsoft.VisualStudio.Imaging" version="14.3.25407" targetFramework="net461" />
66
<package id="Microsoft.VisualStudio.OLE.Interop" version="7.10.6071" targetFramework="net461" />
7+
<package id="Microsoft.VisualStudio.SDK.EmbedInteropTypes" version="15.0.16" targetFramework="net461" />
78
<package id="Microsoft.VisualStudio.Shell.14.0" version="14.3.25407" targetFramework="net461" />
89
<package id="Microsoft.VisualStudio.Shell.Embeddable" version="14.3.25407" targetFramework="net461" />
910
<package id="Microsoft.VisualStudio.Shell.Immutable.10.0" version="10.0.30319" targetFramework="net461" />
@@ -22,5 +23,6 @@
2223
<package id="Microsoft.VisualStudio.Threading.Analyzers" version="15.8.132" targetFramework="net461" />
2324
<package id="Microsoft.VisualStudio.Utilities" version="14.3.25407" targetFramework="net461" />
2425
<package id="Microsoft.VisualStudio.Validation" version="14.1.111" targetFramework="net461" />
25-
<package id="Newtonsoft.Json" version="12.0.1" targetFramework="net461" />
26+
<package id="Newtonsoft.Json" version="12.0.2" targetFramework="net461" />
27+
<package id="stdole" version="7.0.3303" targetFramework="net461" />
2628
</packages>

src/GitLab.TeamFoundation.16/GitLab.TeamFoundation.16.csproj

+7-1
Original file line numberDiff line numberDiff line change
@@ -149,10 +149,14 @@
149149
<HintPath>..\..\packages\Microsoft.VisualStudio.Validation.14.1.111\lib\net45\Microsoft.VisualStudio.Validation.dll</HintPath>
150150
</Reference>
151151
<Reference Include="Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
152-
<HintPath>..\..\packages\Newtonsoft.Json.12.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
152+
<HintPath>..\..\packages\Newtonsoft.Json.12.0.2\lib\net45\Newtonsoft.Json.dll</HintPath>
153153
</Reference>
154154
<Reference Include="PresentationCore" />
155155
<Reference Include="PresentationFramework" />
156+
<Reference Include="stdole, Version=7.0.3300.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
157+
<HintPath>..\..\packages\stdole.7.0.3303\lib\net10\stdole.dll</HintPath>
158+
<EmbedInteropTypes>True</EmbedInteropTypes>
159+
</Reference>
156160
<Reference Include="System" />
157161
<Reference Include="System.ComponentModel.Composition" />
158162
<Reference Include="System.Core" />
@@ -282,8 +286,10 @@
282286
</PropertyGroup>
283287
<Error Condition="!Exists('..\..\packages\Microsoft.VisualStudio.Threading.Analyzers.15.8.132\build\Microsoft.VisualStudio.Threading.Analyzers.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\Microsoft.VisualStudio.Threading.Analyzers.15.8.132\build\Microsoft.VisualStudio.Threading.Analyzers.targets'))" />
284288
<Error Condition="!Exists('..\..\packages\LibGit2Sharp.NativeBinaries.2.0.267\build\net46\LibGit2Sharp.NativeBinaries.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\LibGit2Sharp.NativeBinaries.2.0.267\build\net46\LibGit2Sharp.NativeBinaries.props'))" />
289+
<Error Condition="!Exists('..\..\packages\Microsoft.VisualStudio.SDK.EmbedInteropTypes.15.0.16\build\Microsoft.VisualStudio.SDK.EmbedInteropTypes.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\Microsoft.VisualStudio.SDK.EmbedInteropTypes.15.0.16\build\Microsoft.VisualStudio.SDK.EmbedInteropTypes.targets'))" />
285290
</Target>
286291
<Import Project="..\..\packages\Microsoft.VisualStudio.Threading.Analyzers.15.8.132\build\Microsoft.VisualStudio.Threading.Analyzers.targets" Condition="Exists('..\..\packages\Microsoft.VisualStudio.Threading.Analyzers.15.8.132\build\Microsoft.VisualStudio.Threading.Analyzers.targets')" />
292+
<Import Project="..\..\packages\Microsoft.VisualStudio.SDK.EmbedInteropTypes.15.0.16\build\Microsoft.VisualStudio.SDK.EmbedInteropTypes.targets" Condition="Exists('..\..\packages\Microsoft.VisualStudio.SDK.EmbedInteropTypes.15.0.16\build\Microsoft.VisualStudio.SDK.EmbedInteropTypes.targets')" />
287293
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
288294
Other similar extension points exist, see Microsoft.Common.targets.
289295
<Target Name="BeforeBuild">

src/GitLab.TeamFoundation.16/packages.config

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<package id="LibGit2Sharp.NativeBinaries" version="2.0.267" targetFramework="net472" />
55
<package id="Microsoft.VisualStudio.Imaging" version="14.3.25407" targetFramework="net461" />
66
<package id="Microsoft.VisualStudio.OLE.Interop" version="7.10.6071" targetFramework="net461" />
7+
<package id="Microsoft.VisualStudio.SDK.EmbedInteropTypes" version="15.0.16" targetFramework="net472" />
78
<package id="Microsoft.VisualStudio.Shell.14.0" version="14.3.25407" targetFramework="net461" />
89
<package id="Microsoft.VisualStudio.Shell.Embeddable" version="14.3.25407" targetFramework="net461" />
910
<package id="Microsoft.VisualStudio.Shell.Immutable.10.0" version="10.0.30319" targetFramework="net461" />
@@ -22,5 +23,6 @@
2223
<package id="Microsoft.VisualStudio.Threading.Analyzers" version="15.8.132" targetFramework="net461" />
2324
<package id="Microsoft.VisualStudio.Utilities" version="14.3.25407" targetFramework="net461" />
2425
<package id="Microsoft.VisualStudio.Validation" version="14.1.111" targetFramework="net461" />
25-
<package id="Newtonsoft.Json" version="12.0.1" targetFramework="net461" />
26+
<package id="Newtonsoft.Json" version="12.0.2" targetFramework="net472" />
27+
<package id="stdole" version="7.0.3303" targetFramework="net472" />
2628
</packages>

src/GitLab.VisualStudio.Shared/GitLab.VisualStudio.Shared.csproj

+9-3
Original file line numberDiff line numberDiff line change
@@ -128,13 +128,17 @@
128128
<HintPath>..\..\packages\Microsoft.VisualStudio.Validation.14.1.111\lib\net45\Microsoft.VisualStudio.Validation.dll</HintPath>
129129
</Reference>
130130
<Reference Include="Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
131-
<HintPath>..\..\packages\Newtonsoft.Json.12.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
131+
<HintPath>..\..\packages\Newtonsoft.Json.12.0.2\lib\net45\Newtonsoft.Json.dll</HintPath>
132132
</Reference>
133-
<Reference Include="NGitLab, Version=2.0.34.0, Culture=neutral, processorArchitecture=MSIL">
134-
<HintPath>..\..\packages\NGitLab.Plus.2.0.34\lib\net45\NGitLab.dll</HintPath>
133+
<Reference Include="NGitLab, Version=2.0.36.0, Culture=neutral, processorArchitecture=MSIL">
134+
<HintPath>..\..\packages\NGitLab.Plus.2.0.36\lib\net45\NGitLab.dll</HintPath>
135135
</Reference>
136136
<Reference Include="PresentationCore" />
137137
<Reference Include="PresentationFramework" />
138+
<Reference Include="stdole, Version=7.0.3300.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
139+
<HintPath>..\..\packages\stdole.7.0.3303\lib\net10\stdole.dll</HintPath>
140+
<EmbedInteropTypes>True</EmbedInteropTypes>
141+
</Reference>
138142
<Reference Include="System" />
139143
<Reference Include="System.ComponentModel.Composition" />
140144
<Reference Include="System.ComponentModel.DataAnnotations" />
@@ -273,8 +277,10 @@
273277
<ErrorText>这台计算机上缺少此项目引用的 NuGet 程序包。使用“NuGet 程序包还原”可下载这些程序包。有关更多信息,请参见 http://go.microsoft.com/fwlink/?LinkID=322105。缺少的文件是 {0}。</ErrorText>
274278
</PropertyGroup>
275279
<Error Condition="!Exists('..\..\packages\Microsoft.VisualStudio.Threading.Analyzers.15.8.132\build\Microsoft.VisualStudio.Threading.Analyzers.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\Microsoft.VisualStudio.Threading.Analyzers.15.8.132\build\Microsoft.VisualStudio.Threading.Analyzers.targets'))" />
280+
<Error Condition="!Exists('..\..\packages\Microsoft.VisualStudio.SDK.EmbedInteropTypes.15.0.16\build\Microsoft.VisualStudio.SDK.EmbedInteropTypes.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\Microsoft.VisualStudio.SDK.EmbedInteropTypes.15.0.16\build\Microsoft.VisualStudio.SDK.EmbedInteropTypes.targets'))" />
276281
</Target>
277282
<Import Project="..\..\packages\Microsoft.VisualStudio.Threading.Analyzers.15.8.132\build\Microsoft.VisualStudio.Threading.Analyzers.targets" Condition="Exists('..\..\packages\Microsoft.VisualStudio.Threading.Analyzers.15.8.132\build\Microsoft.VisualStudio.Threading.Analyzers.targets')" />
283+
<Import Project="..\..\packages\Microsoft.VisualStudio.SDK.EmbedInteropTypes.15.0.16\build\Microsoft.VisualStudio.SDK.EmbedInteropTypes.targets" Condition="Exists('..\..\packages\Microsoft.VisualStudio.SDK.EmbedInteropTypes.15.0.16\build\Microsoft.VisualStudio.SDK.EmbedInteropTypes.targets')" />
278284
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
279285
Other similar extension points exist, see Microsoft.Common.targets.
280286
<Target Name="BeforeBuild">

src/GitLab.VisualStudio.Shared/packages.config

+4-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
<packages>
33
<package id="Microsoft.VisualStudio.Imaging" version="14.3.25407" targetFramework="net461" />
44
<package id="Microsoft.VisualStudio.OLE.Interop" version="7.10.6071" targetFramework="net461" />
5+
<package id="Microsoft.VisualStudio.SDK.EmbedInteropTypes" version="15.0.16" targetFramework="net461" />
56
<package id="Microsoft.VisualStudio.Shell.14.0" version="14.3.25407" targetFramework="net461" />
67
<package id="Microsoft.VisualStudio.Shell.Embeddable" version="14.3.25407" targetFramework="net461" />
78
<package id="Microsoft.VisualStudio.Shell.Immutable.10.0" version="10.0.30319" targetFramework="net461" />
@@ -20,7 +21,8 @@
2021
<package id="Microsoft.VisualStudio.Threading.Analyzers" version="15.8.132" targetFramework="net461" />
2122
<package id="Microsoft.VisualStudio.Utilities" version="14.3.25407" targetFramework="net461" />
2223
<package id="Microsoft.VisualStudio.Validation" version="14.1.111" targetFramework="net461" />
23-
<package id="Newtonsoft.Json" version="12.0.1" targetFramework="net461" />
24-
<package id="NGitLab.Plus" version="2.0.34" targetFramework="net461" />
24+
<package id="Newtonsoft.Json" version="12.0.2" targetFramework="net461" />
25+
<package id="NGitLab.Plus" version="2.0.36" targetFramework="net461" />
26+
<package id="stdole" version="7.0.3303" targetFramework="net461" />
2527
<package id="System.Windows.Interactivity.WPF" version="2.0.20525" targetFramework="net461" />
2628
</packages>

0 commit comments

Comments
 (0)