File tree 7 files changed +10
-5
lines changed
7 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 1
1
# #####################################
2
2
# NOTE: Before running this pipeline to generate a new nuget package, update the version string in two places
3
3
# 1) update the name: string below (line 6) -- this is the version for the nuget package (e.g. 1.0.0)
4
- # 2) update \libs\host\GarnetServer.cs readonly string version (~line 53 ) -- NOTE - these two values need to be the same
4
+ # 2) update \libs\host\GarnetServer.cs readonly string version (~line 32 ) -- NOTE - these two values need to be the same
5
5
# #####################################
6
- name : 1.0.31
6
+ name : 1.0.32
7
7
trigger :
8
8
branches :
9
9
include :
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ COPY libs/cluster/*.csproj libs/cluster/
8
8
COPY libs/common/*.csproj libs/common/
9
9
COPY libs/host/*.csproj libs/host/
10
10
COPY libs/server/*.csproj libs/server/
11
+ COPY libs/resources/*.csproj libs/resources/
11
12
COPY libs/storage/Tsavorite/cs/src/core/*.csproj libs/storage/Tsavorite/cs/src/core/
12
13
COPY libs/storage/Tsavorite/cs/src/devices/AzureStorageDevice/*.csproj libs/storage/Tsavorite/cs/src/devices/AzureStorageDevice/
13
14
COPY main/GarnetServer/*.csproj main/GarnetServer/
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ COPY libs/cluster/*.csproj libs/cluster/
8
8
COPY libs/common/*.csproj libs/common/
9
9
COPY libs/host/*.csproj libs/host/
10
10
COPY libs/server/*.csproj libs/server/
11
+ COPY libs/resources/*.csproj libs/resources/
11
12
COPY libs/storage/Tsavorite/cs/src/core/*.csproj libs/storage/Tsavorite/cs/src/core/
12
13
COPY libs/storage/Tsavorite/cs/src/devices/AzureStorageDevice/*.csproj libs/storage/Tsavorite/cs/src/devices/AzureStorageDevice/
13
14
COPY main/GarnetServer/*.csproj main/GarnetServer/
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ COPY libs/cluster/*.csproj libs/cluster/
8
8
COPY libs/common/*.csproj libs/common/
9
9
COPY libs/host/*.csproj libs/host/
10
10
COPY libs/server/*.csproj libs/server/
11
+ COPY libs/resources/*.csproj libs/resources/
11
12
COPY libs/storage/Tsavorite/cs/src/core/*.csproj libs/storage/Tsavorite/cs/src/core/
12
13
COPY libs/storage/Tsavorite/cs/src/devices/AzureStorageDevice/*.csproj libs/storage/Tsavorite/cs/src/devices/AzureStorageDevice/
13
14
COPY main/GarnetServer/*.csproj main/GarnetServer/
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ COPY libs/cluster/*.csproj libs/cluster/
12
12
COPY libs/common/*.csproj libs/common/
13
13
COPY libs/host/*.csproj libs/host/
14
14
COPY libs/server/*.csproj libs/server/
15
+ COPY libs/resources/*.csproj libs/resources/
15
16
COPY libs/storage/Tsavorite/cs/src/core/*.csproj libs/storage/Tsavorite/cs/src/core/
16
17
COPY libs/storage/Tsavorite/cs/src/devices/AzureStorageDevice/*.csproj libs/storage/Tsavorite/cs/src/devices/AzureStorageDevice/
17
18
COPY main/GarnetServer/*.csproj main/GarnetServer/
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ COPY libs/cluster/*.csproj libs/cluster/
8
8
COPY libs/common/*.csproj libs/common/
9
9
COPY libs/host/*.csproj libs/host/
10
10
COPY libs/server/*.csproj libs/server/
11
+ COPY libs/resources/*.csproj libs/resources/
11
12
COPY libs/storage/Tsavorite/cs/src/core/*.csproj libs/storage/Tsavorite/cs/src/core/
12
13
COPY libs/storage/Tsavorite/cs/src/devices/AzureStorageDevice/*.csproj libs/storage/Tsavorite/cs/src/devices/AzureStorageDevice/
13
14
COPY main/GarnetServer/*.csproj main/GarnetServer/
Original file line number Diff line number Diff line change @@ -28,6 +28,9 @@ namespace Garnet
28
28
/// </summary>
29
29
public class GarnetServer : IDisposable
30
30
{
31
+ // IMPORTANT: Keep the version in sync with .azure\pipelines\azure-pipelines-external-release.yml line ~6.
32
+ readonly string version = "1.0.32" ;
33
+
31
34
internal GarnetProvider Provider ;
32
35
33
36
private readonly GarnetServerOptions opts ;
@@ -51,9 +54,6 @@ public class GarnetServer : IDisposable
51
54
/// </summary>
52
55
protected StoreWrapper storeWrapper ;
53
56
54
- // IMPORTANT: Keep the version in sync with .azure\pipelines\azure-pipelines-external-release.yml line ~6.
55
- readonly string version = "1.0.31" ;
56
-
57
57
/// <summary>
58
58
/// Resp protocol version
59
59
/// </summary>
You can’t perform that action at this time.
0 commit comments