-
Notifications
You must be signed in to change notification settings - Fork 126
/
.gitignore
182 lines (150 loc) · 6.25 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
.settings
*~
src/.vs/Pubnub/v15/sqlite3/storage.ide
/src/UnitTests/AcceptanceTests/bin/Debug/*
/src/UnitTests/AcceptanceTests/obj/Debug/*
/src/UnitTests/AcceptanceTests/bin/Release/*
/src/UnitTests/AcceptanceTests/obj/Release/*
/src/UnitTests/AcceptanceTests/*.user
/src/UnitTests/AcceptanceTests/obj/*
/src/UnitTests/MockServerPubnubApi/bin/Debug/*
/src/UnitTests/MockServerPubnubApi/obj/Debug/*
/src/UnitTests/MockServerPubnubApi/bin/Release/*
/src/UnitTests/MockServerPubnubApi/obj/Release/*
/src/UnitTests/MockServerPubnubApi/*.user
/src/UnitTests/MockServerPubnubApi/obj/*
/src/UnitTests/MockServerPubnubApiPCL/bin/Debug/*
/src/UnitTests/MockServerPubnubApiPCL/obj/Debug/*
/src/UnitTests/MockServerPubnubApiPCL/bin/Release/*
/src/UnitTests/MockServerPubnubApiPCL/obj/Release/*
/src/UnitTests/MockServerPubnubApiPCL/*.user
/src/UnitTests/MockServerPubnubApiPCL/obj/*
/src/Api/PubnubApiPCL/bin/*
/src/Api/PubnubApiPCL/obj/Debug/*
/src/Api/PubnubApiPCL/obj/Release/*
/src/Api/PubnubApiPCL/obj/*
/src/Api/PubnubApiPCL/bin/Debug/*
/src/Api/PubnubApiPCL/bin/Release/*
/src/Api/PubnubApiPCL/*.user
/src/Api/PubnubApi/bin/*
/src/Api/PubnubApi/bin/Debug/*
/src/Api/PubnubApi/obj/Debug/*
/src/Api/PubnubApi/bin/Release/*
/src/Api/PubnubApi/obj/Release/*
/src/Api/PubnubApi/obj/*
/src/Api/PubnubApi/*.user
/src/Api/PubnubApi/Settings.StyleCop
/src/Api/PubnubApiUWP/bin/*
/src/Api/PubnubApiUWP/bin/Debug/*
/src/Api/PubnubApiUWP/obj/Debug/*
/src/Api/PubnubApiUWP/bin/Release/*
/src/Api/PubnubApiUWP/obj/Release/*
/src/Api/PubnubApiUWP/obj/*
/src/Api/PubnubApiUWP/*.user
/src/Api/PubnubApiUnity/bin/*
/src/Api/PubnubApiUnity/bin/Debug/*
/src/Api/PubnubApiUnity/obj/Debug/*
/src/Api/PubnubApiUnity/bin/Release/*
/src/Api/PubnubApiUnity/obj/Release/*
/src/Api/PubnubApiUnity/obj/*
/src/Api/PubnubApiUnity/*.user
/src/packages/*
/src/UnitTests/PubnubApi.Tests/bin/Debug/*
/src/UnitTests/PubnubApi.Tests/obj/Debug/*
/src/UnitTests/PubnubApi.Tests/bin/Release/*
/src/UnitTests/PubnubApi.Tests/obj/Release/*
/src/UnitTests/PubnubApi.Tests/*.user
/src/UnitTests/PubnubApi.Tests/obj/*
/src/UnitTests/PubnubApi.Tests/TestResults/*
/src/UnitTests/PubnubApiPCL.Tests/bin/Debug/*
/src/UnitTests/PubnubApiPCL.Tests/obj/Debug/*
/src/UnitTests/PubnubApiPCL.Tests/bin/Release/*
/src/UnitTests/PubnubApiPCL.Tests/obj/Release/*
/src/UnitTests/PubnubApiPCL.Tests/*.user
/src/UnitTests/PubnubApiPCL.Tests/obj/*
/src/UnitTests/PubnubApiPCL.Tests/TestResults/*
/src/Examples/PubnubApi.ASPNETWebFormExample/bin/*
/src/Examples/PubnubApi.ASPNETWebFormExample/obj/*
/src/Examples/PubnubApi.ASPNETWebFormExample/*.user
/src/Examples/PubnubApi.ConsoleExample/bin/Debug/*
/src/Examples/PubnubApi.ConsoleExample/obj/Debug/*
/src/Examples/PubnubApi.ConsoleExample/bin/Release/*
/src/Examples/PubnubApi.ConsoleExample/obj/Release/*
/src/Examples/PubnubApi.ConsoleExample/*.user
/src/Examples/PubnubApi.WinFormExample/bin/Debug/*
/src/Examples/PubnubApi.WinFormExample/obj/Debug/*
/src/Examples/PubnubApi.WinFormExample/bin/Release/*
/src/Examples/PubnubApi.WinFormExample/obj/Release/*
/src/Examples/PubnubApi.WinFormExample/*.user
/src/Examples/PubnubApi.WinFormExample/packages/*
/src/Examples/PubnubApi.WinFormExample/.vs/*
/src/Examples/PubnubApiPCL.ConsoleExample/bin/Debug/*
/src/Examples/PubnubApiPCL.ConsoleExample/obj/Debug/*
/src/Examples/PubnubApiPCL.ConsoleExample/bin/Release/*
/src/Examples/PubnubApiPCL.ConsoleExample/obj/Release/*
/src/Examples/PubnubApiPCL.ConsoleExample/*.user
/src/Examples/WindowsUniversalApp/bin/*
/src/Examples/WindowsUniversalApp/obj/*
/src/Examples/WindowsUniversalApp/*.user
src/Examples/WindowsUniversalApp/.vs/*
/src/Examples/PubnubApiPCL.Windows10UWPExample/bin/*
/src/Examples/PubnubApiPCL.Windows10UWPExample/obj/*
/src/Examples/PubnubApiPCL.Windows10UWPExample/*.user
/src/Examples/PubnubApiPCL.WindowsPhone81Example/bin/Debug/*
/src/Examples/PubnubApiPCL.WindowsPhone81Example/obj/Debug/*
/src/Examples/PubnubApiPCL.WindowsPhone81Example/bin/Release/*
/src/Examples/PubnubApiPCL.WindowsPhone81Example/obj/Release/*
/src/Examples/PubnubApiPCL.WindowsPhone81Example/*.user
/src/Examples/PubnubApiPCL.WindowsStore81Example/bin/Debug/*
/src/Examples/PubnubApiPCL.WindowsStore81Example/obj/Debug/*
/src/Examples/PubnubApiPCL.WindowsStore81Example/bin/Release/*
/src/Examples/PubnubApiPCL.WindowsStore81Example/obj/Release/*
/src/Examples/PubnubApiPCL.WindowsStore81Example/*.user
/src/Examples/PubnubApiPCL.WindowsPhone80Example/bin/*
/src/Examples/PubnubApiPCL.WindowsPhone80Example/obj/*
/src/Examples/PubnubApiPCL.WindowsPhone80Example/*.user
/src/Examples/PubnubApiPCL.WindowsStore80Example/bin/*
/src/Examples/PubnubApiPCL.WindowsStore80Example/obj/*
/src/Examples/PubnubApiPCL.WindowsStore80Example/*.user
/src/Examples/PubnubApiPCL.XamarinAndroidExample/bin/*
/src/Examples/PubnubApiPCL.XamarinAndroidExample/obj/*
/src/Examples/PubnubApiPCL.XamariniOSExample/bin/*
/src/Examples/PubnubApiPCL.XamariniOSExample/obj/*
src/Examples/PubnubApiPCL.XamariniMacExample/bin/*
src/Examples/PubnubApiPCL.XamariniMacExample/obj/*
/src/UnitTests/PubnubApiPCL.WindowsPhone80.Tests/bin/*
/src/UnitTests/PubnubApiPCL.WindowsPhone80.Tests/obj/*
/src/UnitTests/PubnubApiPCL.WindowsPhone80.Tests/*.user
/src/UnitTests/PubnubApiPCL.Silverlight50.Tests/Bin/Debug/*
/src/UnitTests/PubnubApiPCL.Silverlight50.Tests/Bin/Release/*
/src/UnitTests/PubnubApiPCL.Silverlight50.Tests/obj/Debug/*
/src/UnitTests/PubnubApiPCL.Silverlight50.Tests/obj/Release/*
/src/UnitTests/PubnubApiPCL.Silverlight50.Tests/*.user
/src/*.userprefs
/src/.vs/*
/monotouch/packages/*
/monotouch/PubnubMessagingExample/bin/*
/monotouch/PubnubMessagingExample/obj/*
/src/Examples/monotouch/packages/*
/src/Examples/monotouch/PubnubMessagingExample/bin/*
/src/Examples/monotouch/PubnubMessagingExample/obj/*
/src/Examples/monotouch/*.userprefs
/src/Examples/mono-for-android/Components/*
/src/Examples/mono-for-android/packages/*
/src/Examples/mono-for-android/*.userprefs
/src/Examples/mono-for-android/PubNubMessaging.Example/bin/*
/src/Examples/mono-for-android/PubNubMessaging.Example/obj/*
/src/Examples/mono-for-android/PubNubMessaging.Example/Jars/*
.DS_Store
*.cache
*.suo
src/UnitTests/MockServer/bin/*
src/UnitTests/MockServer/obj/*
src/PNEventEngine/bin/*
src/PNEventEngine/obj/*
src/PNEventEngineUWP/bin/*
src/PNEventEngineUWP/obj/*
# GitHub Actions #
##################
.github/.release
.idea