File tree 9 files changed +13
-32
lines changed
GitVersionCore.Tests/Mocks 9 files changed +13
-32
lines changed Original file line number Diff line number Diff line change 14
14
15
15
</PropertyGroup >
16
16
<PropertyGroup >
17
- <PackageVersion_LibGit2Sharp >0.25.0-preview-0033 </PackageVersion_LibGit2Sharp >
18
- <PackageVersion_LibGit2SharpNativeBinaries >[1 .0.185 ]</PackageVersion_LibGit2SharpNativeBinaries >
17
+ <PackageVersion_LibGit2Sharp >0.26.0 </PackageVersion_LibGit2Sharp >
18
+ <PackageVersion_LibGit2SharpNativeBinaries >[2 .0.267 ]</PackageVersion_LibGit2SharpNativeBinaries >
19
19
<PackageVersion_JetBrainsAnnotations >2019.1.1</PackageVersion_JetBrainsAnnotations >
20
20
<PackageVersion_YamlDotNet >6.0.0</PackageVersion_YamlDotNet >
21
21
</PropertyGroup >
Original file line number Diff line number Diff line change @@ -2,10 +2,6 @@ FROM mono:5.14
2
2
LABEL maintainers="GitTools Maintainers"
3
3
ARG contentFolder
4
4
5
- RUN sed -i '/jessie-updates/d' /etc/apt/sources.list && apt-get update && \
6
- apt-get install -y libgit2-dev && \
7
- ln -s /usr/lib/x86_64-linux-gnu/libgit2.so /lib/x86_64-linux-gnu/libgit2-15e1193.so
8
-
9
5
WORKDIR /app
10
6
COPY $contentFolder/ ./
11
7
Original file line number Diff line number Diff line change 1
1
FROM centos:7
2
2
LABEL maintainers="GitTools Maintainers"
3
3
4
- ENV DOTNET_VERSION='2.1'
4
+ ENV DOTNET_VERSION='2.1'
5
5
ARG contentFolder
6
6
7
7
# https://dotnet.microsoft.com/download/linux-package-manager/rhel/sdk-current
8
8
RUN rpm -Uvh https://packages.microsoft.com/config/rhel/7/packages-microsoft-prod.rpm \
9
9
&& yum update cache
10
10
11
11
# if you need SDK use dotnet-sdk-$DOTNET_VERSION
12
- RUN yum install -y dotnet-runtime-$DOTNET_VERSION.x86_64 unzip libgit2-devel.x86_64 \
12
+ RUN yum install -y dotnet-runtime-$DOTNET_VERSION.x86_64 \
13
13
&& yum clean all \
14
14
&& rm -rf /tmp/*
15
15
16
- RUN ln -s /usr/lib64/libgit2.so /usr/lib64/libgit2-15e1193.so
17
-
18
16
WORKDIR /app
19
17
COPY $contentFolder/ ./
20
18
21
- ENTRYPOINT ["dotnet" , "GitVersion.dll" ]
19
+ ENTRYPOINT ["dotnet" , "GitVersion.dll" ]
Original file line number Diff line number Diff line change @@ -2,10 +2,6 @@ FROM mcr.microsoft.com/dotnet/core/runtime:2.1
2
2
LABEL maintainers="GitTools Maintainers"
3
3
ARG contentFolder
4
4
5
- RUN apt-get update && \
6
- apt-get install -y libgit2-dev && \
7
- ln -s /usr/lib/x86_64-linux-gnu/libgit2.so /lib/x86_64-linux-gnu/libgit2-15e1193.so
8
-
9
5
WORKDIR /app
10
6
COPY $contentFolder/ ./
11
7
Original file line number Diff line number Diff line change 1
1
FROM fedora:27
2
2
LABEL maintainers="GitTools Maintainers"
3
3
4
- ENV DOTNET_VERSION='2.1'
4
+ ENV DOTNET_VERSION='2.1'
5
5
ARG contentFolder
6
6
7
7
# https://dotnet.microsoft.com/download/linux-package-manager/rhel/sdk-current
8
- RUN rpm -Uvh https://packages.microsoft.com/config/fedora/27/packages-microsoft-prod.rpm
8
+ RUN rpm -Uvh https://packages.microsoft.com/config/fedora/27/packages-microsoft-prod.rpm
9
9
10
10
# if you need SDK use dotnet-sdk-$DOTNET_VERSION
11
- RUN yum install -y dotnet-runtime-$DOTNET_VERSION.x86_64 unzip libgit2-devel.x86_64 \
11
+ RUN yum install -y dotnet-runtime-$DOTNET_VERSION.x86_64\
12
12
&& yum clean all \
13
13
&& rm -rf /tmp/*
14
14
15
- RUN ln -s /usr/lib64/libgit2.so /usr/lib64/libgit2-15e1193.so
16
-
17
15
WORKDIR /app
18
16
COPY $contentFolder/ ./
19
17
20
- ENTRYPOINT ["dotnet" , "GitVersion.dll" ]
18
+ ENTRYPOINT ["dotnet" , "GitVersion.dll" ]
Original file line number Diff line number Diff line change @@ -9,12 +9,10 @@ RUN rpm -Uvh https://packages.microsoft.com/config/rhel/7/packages-microsoft-pro
9
9
&& yum update cache
10
10
11
11
# if you need SDK use dotnet-sdk-$DOTNET_VERSION
12
- RUN yum install -y dotnet-runtime-$DOTNET_VERSION.x86_64 unzip libgit2-devel.x86_64 \
12
+ RUN yum install -y dotnet-runtime-$DOTNET_VERSION.x86_64 \
13
13
&& yum clean all \
14
14
&& rm -rf /tmp/*
15
15
16
- RUN ln -s /usr/lib64/libgit2.so /usr/lib64/libgit2-15e1193.so
17
-
18
16
WORKDIR /app
19
17
COPY $contentFolder/ ./
20
18
Original file line number Diff line number Diff line change @@ -2,10 +2,6 @@ FROM mcr.microsoft.com/dotnet/core/runtime:2.2
2
2
LABEL maintainers="GitTools Maintainers"
3
3
ARG contentFolder
4
4
5
- RUN apt-get update && \
6
- apt-get install -y libgit2-dev && \
7
- ln -s /usr/lib/x86_64-linux-gnu/libgit2.so /lib/x86_64-linux-gnu/libgit2-15e1193.so
8
-
9
5
WORKDIR /app
10
6
COPY $contentFolder/ ./
11
7
Original file line number Diff line number Diff line change @@ -5,15 +5,13 @@ ENV DOTNET_VERSION='2.2'
5
5
ARG contentFolder
6
6
7
7
# https://dotnet.microsoft.com/download/linux-package-manager/rhel/sdk-current
8
- RUN rpm -Uvh https://packages.microsoft.com/config/fedora/27/packages-microsoft-prod.rpm
8
+ RUN rpm -Uvh https://packages.microsoft.com/config/fedora/27/packages-microsoft-prod.rpm
9
9
10
10
# if you need SDK use dotnet-sdk-$DOTNET_VERSION
11
- RUN yum install -y dotnet-runtime-$DOTNET_VERSION.x86_64 unzip libgit2-devel.x86_64 \
11
+ RUN yum install -y dotnet-runtime-$DOTNET_VERSION.x86_64 \
12
12
&& yum clean all \
13
13
&& rm -rf /tmp/*
14
14
15
- RUN ln -s /usr/lib64/libgit2.so /usr/lib64/libgit2-15e1193.so
16
-
17
15
WORKDIR /app
18
16
COPY $contentFolder/ ./
19
17
Original file line number Diff line number Diff line change @@ -225,6 +225,7 @@ public IQueryableCommitLog Commits
225
225
public ObjectDatabase ObjectDatabase { get ; set ; }
226
226
public NoteCollection Notes { get ; set ; }
227
227
public SubmoduleCollection Submodules { get ; set ; }
228
+ public WorktreeCollection Worktrees { get ; set ; }
228
229
public Rebase Rebase { get ; private set ; }
229
230
230
231
public Ignore Ignore
You can’t perform that action at this time.
0 commit comments