react-native-webview-bootpay 13.6.0 → 13.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/apple/BPCWebViewImpl.m +4 -4
- package/package.json +1 -1
- package/ios/.DS_Store +0 -0
- package/lib/NativeRNCWebView.d.ts +0 -10
- package/lib/NativeRNCWebView.d.ts.map +0 -1
- package/lib/NativeRNCWebView.js +0 -2
- package/lib/RNCWebViewNativeComponent.d.ts +0 -242
- package/lib/RNCWebViewNativeComponent.d.ts.map +0 -1
- package/lib/RNCWebViewNativeComponent.js +0 -6
- package/windows/.gitignore +0 -353
package/apple/BPCWebViewImpl.m
CHANGED
|
@@ -23,7 +23,7 @@ static NSString *const MessageHandlerName = @"BootpayRNWebView";
|
|
|
23
23
|
static NSURLCredential* clientAuthenticationCredential;
|
|
24
24
|
static NSDictionary* customCertificatesForHost;
|
|
25
25
|
|
|
26
|
-
NSString *const
|
|
26
|
+
NSString *const BPCUSTOM_SELECTOR = @"_BPCUSTOM_SELECTOR_";
|
|
27
27
|
|
|
28
28
|
#if !TARGET_OS_OSX
|
|
29
29
|
// runtime trick to remove WKWebView keyboard default toolbar
|
|
@@ -258,7 +258,7 @@ RCTAutoInsetsProtocol>
|
|
|
258
258
|
for(NSDictionary *menuItem in self.menuItems) {
|
|
259
259
|
NSString *menuItemLabel = [RCTConvert NSString:menuItem[@"label"]];
|
|
260
260
|
NSString *menuItemKey = [RCTConvert NSString:menuItem[@"key"]];
|
|
261
|
-
NSString *sel = [NSString stringWithFormat:@"%@%@",
|
|
261
|
+
NSString *sel = [NSString stringWithFormat:@"%@%@", BPCUSTOM_SELECTOR, menuItemKey];
|
|
262
262
|
UIMenuItem *item = [[UIMenuItem alloc] initWithTitle: menuItemLabel
|
|
263
263
|
action: NSSelectorFromString(sel)];
|
|
264
264
|
[menuControllerItems addObject: item];
|
|
@@ -319,7 +319,7 @@ RCTAutoInsetsProtocol>
|
|
|
319
319
|
- (void)forwardInvocation:(NSInvocation *)invocation
|
|
320
320
|
{
|
|
321
321
|
NSString *sel = NSStringFromSelector([invocation selector]);
|
|
322
|
-
NSRange match = [sel rangeOfString:
|
|
322
|
+
NSRange match = [sel rangeOfString:BPCUSTOM_SELECTOR];
|
|
323
323
|
if (match.location == 0) {
|
|
324
324
|
[self tappedMenuItem:[sel substringFromIndex:17]];
|
|
325
325
|
} else {
|
|
@@ -338,7 +338,7 @@ RCTAutoInsetsProtocol>
|
|
|
338
338
|
{
|
|
339
339
|
NSString *sel = NSStringFromSelector(action);
|
|
340
340
|
// Do any of them have our custom keys?
|
|
341
|
-
NSRange match = [sel rangeOfString:
|
|
341
|
+
NSRange match = [sel rangeOfString:BPCUSTOM_SELECTOR];
|
|
342
342
|
|
|
343
343
|
if (match.location == 0) {
|
|
344
344
|
return YES;
|
package/package.json
CHANGED
package/ios/.DS_Store
DELETED
|
Binary file
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import type { TurboModule } from 'react-native';
|
|
2
|
-
import { Int32 } from 'react-native/Libraries/Types/CodegenTypes';
|
|
3
|
-
export interface Spec extends TurboModule {
|
|
4
|
-
readonly getConstants: () => {};
|
|
5
|
-
isFileUploadSupported(): Promise<boolean>;
|
|
6
|
-
shouldStartLoadWithLockIdentifier(shouldStart: boolean, lockIdentifier: Int32): void;
|
|
7
|
-
}
|
|
8
|
-
declare const _default: Spec;
|
|
9
|
-
export default _default;
|
|
10
|
-
//# sourceMappingURL=NativeRNCWebView.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"NativeRNCWebView.d.ts","sourceRoot":"","sources":["../src/NativeRNCWebView.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,cAAc,CAAC;AAEhD,OAAO,EAAC,KAAK,EAAC,MAAM,2CAA2C,CAAC;AAEhE,MAAM,WAAW,IAAK,SAAQ,WAAW;IACvC,QAAQ,CAAC,YAAY,EAAE,MAAM,EAAE,CAAC;IAGhC,qBAAqB,IAAI,OAAO,CAAC,OAAO,CAAC,CAAC;IAC1C,iCAAiC,CAAC,WAAW,EAAE,OAAO,EAAE,cAAc,EAAE,KAAK,GAAG,IAAI,CAAC;CACtF;;AAED,wBAAoE"}
|
package/lib/NativeRNCWebView.js
DELETED
|
@@ -1,242 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
import type { HostComponent, ViewProps } from 'react-native';
|
|
3
|
-
import { DirectEventHandler, Double, Int32, WithDefault } from 'react-native/Libraries/Types/CodegenTypes';
|
|
4
|
-
export declare type WebViewNativeEvent = Readonly<{
|
|
5
|
-
url: string;
|
|
6
|
-
loading: boolean;
|
|
7
|
-
title: string;
|
|
8
|
-
canGoBack: boolean;
|
|
9
|
-
canGoForward: boolean;
|
|
10
|
-
lockIdentifier: Double;
|
|
11
|
-
}>;
|
|
12
|
-
export declare type WebViewCustomMenuSelectionEvent = Readonly<{
|
|
13
|
-
label: string;
|
|
14
|
-
key: string;
|
|
15
|
-
selectedText: string;
|
|
16
|
-
}>;
|
|
17
|
-
export declare type WebViewMessageEvent = Readonly<{
|
|
18
|
-
url: string;
|
|
19
|
-
loading: boolean;
|
|
20
|
-
title: string;
|
|
21
|
-
canGoBack: boolean;
|
|
22
|
-
canGoForward: boolean;
|
|
23
|
-
lockIdentifier: Double;
|
|
24
|
-
data: string;
|
|
25
|
-
}>;
|
|
26
|
-
export declare type WebViewOpenWindowEvent = Readonly<{
|
|
27
|
-
targetUrl: string;
|
|
28
|
-
}>;
|
|
29
|
-
export declare type WebViewHttpErrorEvent = Readonly<{
|
|
30
|
-
url: string;
|
|
31
|
-
loading: boolean;
|
|
32
|
-
title: string;
|
|
33
|
-
canGoBack: boolean;
|
|
34
|
-
canGoForward: boolean;
|
|
35
|
-
lockIdentifier: Double;
|
|
36
|
-
description: string;
|
|
37
|
-
statusCode: Int32;
|
|
38
|
-
}>;
|
|
39
|
-
export declare type WebViewErrorEvent = Readonly<{
|
|
40
|
-
url: string;
|
|
41
|
-
loading: boolean;
|
|
42
|
-
title: string;
|
|
43
|
-
canGoBack: boolean;
|
|
44
|
-
canGoForward: boolean;
|
|
45
|
-
lockIdentifier: Double;
|
|
46
|
-
domain?: string;
|
|
47
|
-
code: Int32;
|
|
48
|
-
description: string;
|
|
49
|
-
}>;
|
|
50
|
-
export declare type WebViewNativeProgressEvent = Readonly<{
|
|
51
|
-
url: string;
|
|
52
|
-
loading: boolean;
|
|
53
|
-
title: string;
|
|
54
|
-
canGoBack: boolean;
|
|
55
|
-
canGoForward: boolean;
|
|
56
|
-
lockIdentifier: Double;
|
|
57
|
-
progress: Double;
|
|
58
|
-
}>;
|
|
59
|
-
export declare type WebViewNavigationEvent = Readonly<{
|
|
60
|
-
url: string;
|
|
61
|
-
loading: boolean;
|
|
62
|
-
title: string;
|
|
63
|
-
canGoBack: boolean;
|
|
64
|
-
canGoForward: boolean;
|
|
65
|
-
lockIdentifier: Double;
|
|
66
|
-
navigationType: 'click' | 'formsubmit' | 'backforward' | 'reload' | 'formresubmit' | 'other';
|
|
67
|
-
mainDocumentURL?: string;
|
|
68
|
-
}>;
|
|
69
|
-
export declare type ShouldStartLoadRequestEvent = Readonly<{
|
|
70
|
-
url: string;
|
|
71
|
-
loading: boolean;
|
|
72
|
-
title: string;
|
|
73
|
-
canGoBack: boolean;
|
|
74
|
-
canGoForward: boolean;
|
|
75
|
-
lockIdentifier: Double;
|
|
76
|
-
navigationType: 'click' | 'formsubmit' | 'backforward' | 'reload' | 'formresubmit' | 'other';
|
|
77
|
-
mainDocumentURL?: string;
|
|
78
|
-
isTopFrame: boolean;
|
|
79
|
-
}>;
|
|
80
|
-
declare type ScrollEvent = Readonly<{
|
|
81
|
-
contentInset: {
|
|
82
|
-
bottom: Double;
|
|
83
|
-
left: Double;
|
|
84
|
-
right: Double;
|
|
85
|
-
top: Double;
|
|
86
|
-
};
|
|
87
|
-
contentOffset: {
|
|
88
|
-
y: Double;
|
|
89
|
-
x: Double;
|
|
90
|
-
};
|
|
91
|
-
contentSize: {
|
|
92
|
-
height: Double;
|
|
93
|
-
width: Double;
|
|
94
|
-
};
|
|
95
|
-
layoutMeasurement: {
|
|
96
|
-
height: Double;
|
|
97
|
-
width: Double;
|
|
98
|
-
};
|
|
99
|
-
targetContentOffset?: {
|
|
100
|
-
y: Double;
|
|
101
|
-
x: Double;
|
|
102
|
-
};
|
|
103
|
-
velocity?: {
|
|
104
|
-
y: Double;
|
|
105
|
-
x: Double;
|
|
106
|
-
};
|
|
107
|
-
zoomScale?: Double;
|
|
108
|
-
responderIgnoreScroll?: boolean;
|
|
109
|
-
}>;
|
|
110
|
-
declare type WebViewRenderProcessGoneEvent = Readonly<{
|
|
111
|
-
didCrash: boolean;
|
|
112
|
-
}>;
|
|
113
|
-
declare type WebViewDownloadEvent = Readonly<{
|
|
114
|
-
downloadUrl: string;
|
|
115
|
-
}>;
|
|
116
|
-
export interface NativeProps extends ViewProps {
|
|
117
|
-
allowFileAccess?: boolean;
|
|
118
|
-
allowsProtectedMedia?: boolean;
|
|
119
|
-
allowsFullscreenVideo?: boolean;
|
|
120
|
-
androidLayerType?: WithDefault<'none' | 'software' | 'hardware', 'none'>;
|
|
121
|
-
cacheMode?: WithDefault<'LOAD_DEFAULT' | 'LOAD_CACHE_ELSE_NETWORK' | 'LOAD_NO_CACHE' | 'LOAD_CACHE_ONLY', 'LOAD_DEFAULT'>;
|
|
122
|
-
domStorageEnabled?: boolean;
|
|
123
|
-
downloadingMessage?: string;
|
|
124
|
-
forceDarkOn?: boolean;
|
|
125
|
-
geolocationEnabled?: boolean;
|
|
126
|
-
lackPermissionToDownloadMessage?: string;
|
|
127
|
-
messagingModuleName: string;
|
|
128
|
-
minimumFontSize?: Int32;
|
|
129
|
-
mixedContentMode?: WithDefault<'never' | 'always' | 'compatibility', 'never'>;
|
|
130
|
-
nestedScrollEnabled?: boolean;
|
|
131
|
-
onContentSizeChange?: DirectEventHandler<WebViewNativeEvent>;
|
|
132
|
-
onRenderProcessGone?: DirectEventHandler<WebViewRenderProcessGoneEvent>;
|
|
133
|
-
overScrollMode?: string;
|
|
134
|
-
saveFormDataDisabled?: boolean;
|
|
135
|
-
scalesPageToFit?: boolean;
|
|
136
|
-
setBuiltInZoomControls?: boolean;
|
|
137
|
-
setDisplayZoomControls?: boolean;
|
|
138
|
-
setSupportMultipleWindows?: boolean;
|
|
139
|
-
textZoom?: Int32;
|
|
140
|
-
thirdPartyCookiesEnabled?: boolean;
|
|
141
|
-
hasOnScroll?: boolean;
|
|
142
|
-
injectedJavaScriptObject?: string;
|
|
143
|
-
allowingReadAccessToURL?: string;
|
|
144
|
-
allowsBackForwardNavigationGestures?: boolean;
|
|
145
|
-
allowsInlineMediaPlayback?: boolean;
|
|
146
|
-
allowsAirPlayForMediaPlayback?: boolean;
|
|
147
|
-
allowsLinkPreview?: boolean;
|
|
148
|
-
automaticallyAdjustContentInsets?: boolean;
|
|
149
|
-
autoManageStatusBarEnabled?: boolean;
|
|
150
|
-
bounces?: boolean;
|
|
151
|
-
contentInset?: Readonly<{
|
|
152
|
-
top?: Double;
|
|
153
|
-
left?: Double;
|
|
154
|
-
bottom?: Double;
|
|
155
|
-
right?: Double;
|
|
156
|
-
}>;
|
|
157
|
-
contentInsetAdjustmentBehavior?: WithDefault<'never' | 'automatic' | 'scrollableAxes' | 'always', 'never'>;
|
|
158
|
-
contentMode?: WithDefault<'recommended' | 'mobile' | 'desktop', 'recommended'>;
|
|
159
|
-
dataDetectorTypes?: WithDefault<ReadonlyArray<'address' | 'link' | 'calendarEvent' | 'trackingNumber' | 'flightNumber' | 'lookupSuggestion' | 'phoneNumber' | 'all' | 'none'>, 'phoneNumber'>;
|
|
160
|
-
decelerationRate?: Double;
|
|
161
|
-
directionalLockEnabled?: boolean;
|
|
162
|
-
enableApplePay?: boolean;
|
|
163
|
-
hideKeyboardAccessoryView?: boolean;
|
|
164
|
-
keyboardDisplayRequiresUserAction?: boolean;
|
|
165
|
-
limitsNavigationsToAppBoundDomains?: boolean;
|
|
166
|
-
mediaCapturePermissionGrantType?: WithDefault<'prompt' | 'grant' | 'deny' | 'grantIfSameHostElsePrompt' | 'grantIfSameHostElseDeny', 'prompt'>;
|
|
167
|
-
pagingEnabled?: boolean;
|
|
168
|
-
pullToRefreshEnabled?: boolean;
|
|
169
|
-
scrollEnabled?: boolean;
|
|
170
|
-
sharedCookiesEnabled?: boolean;
|
|
171
|
-
textInteractionEnabled?: boolean;
|
|
172
|
-
useSharedProcessPool?: boolean;
|
|
173
|
-
onContentProcessDidTerminate?: DirectEventHandler<WebViewNativeEvent>;
|
|
174
|
-
onCustomMenuSelection?: DirectEventHandler<WebViewCustomMenuSelectionEvent>;
|
|
175
|
-
onFileDownload?: DirectEventHandler<WebViewDownloadEvent>;
|
|
176
|
-
menuItems?: ReadonlyArray<Readonly<{
|
|
177
|
-
label: string;
|
|
178
|
-
key: string;
|
|
179
|
-
}>>;
|
|
180
|
-
suppressMenuItems?: Readonly<string>[];
|
|
181
|
-
hasOnFileDownload?: boolean;
|
|
182
|
-
fraudulentWebsiteWarningEnabled?: boolean;
|
|
183
|
-
allowFileAccessFromFileURLs?: boolean;
|
|
184
|
-
allowUniversalAccessFromFileURLs?: boolean;
|
|
185
|
-
applicationNameForUserAgent?: string;
|
|
186
|
-
basicAuthCredential?: Readonly<{
|
|
187
|
-
username: string;
|
|
188
|
-
password: string;
|
|
189
|
-
}>;
|
|
190
|
-
cacheEnabled?: boolean;
|
|
191
|
-
incognito?: boolean;
|
|
192
|
-
injectedJavaScript?: string;
|
|
193
|
-
injectedJavaScriptBeforeContentLoaded?: string;
|
|
194
|
-
injectedJavaScriptForMainFrameOnly?: boolean;
|
|
195
|
-
injectedJavaScriptBeforeContentLoadedForMainFrameOnly?: boolean;
|
|
196
|
-
javaScriptCanOpenWindowsAutomatically?: boolean;
|
|
197
|
-
javaScriptEnabled?: boolean;
|
|
198
|
-
webviewDebuggingEnabled?: boolean;
|
|
199
|
-
mediaPlaybackRequiresUserAction?: boolean;
|
|
200
|
-
messagingEnabled: boolean;
|
|
201
|
-
onLoadingError: DirectEventHandler<WebViewErrorEvent>;
|
|
202
|
-
onLoadingFinish: DirectEventHandler<WebViewNavigationEvent>;
|
|
203
|
-
onLoadingProgress: DirectEventHandler<WebViewNativeProgressEvent>;
|
|
204
|
-
onLoadingStart: DirectEventHandler<WebViewNavigationEvent>;
|
|
205
|
-
onHttpError: DirectEventHandler<WebViewHttpErrorEvent>;
|
|
206
|
-
onMessage: DirectEventHandler<WebViewMessageEvent>;
|
|
207
|
-
onOpenWindow?: DirectEventHandler<WebViewOpenWindowEvent>;
|
|
208
|
-
hasOnOpenWindowEvent?: boolean;
|
|
209
|
-
onScroll?: DirectEventHandler<ScrollEvent>;
|
|
210
|
-
onShouldStartLoadWithRequest: DirectEventHandler<ShouldStartLoadRequestEvent>;
|
|
211
|
-
showsHorizontalScrollIndicator?: boolean;
|
|
212
|
-
showsVerticalScrollIndicator?: boolean;
|
|
213
|
-
newSource: Readonly<{
|
|
214
|
-
uri?: string;
|
|
215
|
-
method?: string;
|
|
216
|
-
body?: string;
|
|
217
|
-
headers?: ReadonlyArray<Readonly<{
|
|
218
|
-
name: string;
|
|
219
|
-
value: string;
|
|
220
|
-
}>>;
|
|
221
|
-
html?: string;
|
|
222
|
-
baseUrl?: string;
|
|
223
|
-
}>;
|
|
224
|
-
userAgent?: string;
|
|
225
|
-
}
|
|
226
|
-
export interface NativeCommands {
|
|
227
|
-
goBack: (viewRef: React.ElementRef<HostComponent<NativeProps>>) => void;
|
|
228
|
-
goForward: (viewRef: React.ElementRef<HostComponent<NativeProps>>) => void;
|
|
229
|
-
reload: (viewRef: React.ElementRef<HostComponent<NativeProps>>) => void;
|
|
230
|
-
stopLoading: (viewRef: React.ElementRef<HostComponent<NativeProps>>) => void;
|
|
231
|
-
injectJavaScript: (viewRef: React.ElementRef<HostComponent<NativeProps>>, javascript: string) => void;
|
|
232
|
-
requestFocus: (viewRef: React.ElementRef<HostComponent<NativeProps>>) => void;
|
|
233
|
-
postMessage: (viewRef: React.ElementRef<HostComponent<NativeProps>>, data: string) => void;
|
|
234
|
-
loadUrl: (viewRef: React.ElementRef<HostComponent<NativeProps>>, url: string) => void;
|
|
235
|
-
clearFormData: (viewRef: React.ElementRef<HostComponent<NativeProps>>) => void;
|
|
236
|
-
clearCache: (viewRef: React.ElementRef<HostComponent<NativeProps>>, includeDiskFiles: boolean) => void;
|
|
237
|
-
clearHistory: (viewRef: React.ElementRef<HostComponent<NativeProps>>) => void;
|
|
238
|
-
}
|
|
239
|
-
export declare const Commands: NativeCommands;
|
|
240
|
-
declare const _default: HostComponent<NativeProps>;
|
|
241
|
-
export default _default;
|
|
242
|
-
//# sourceMappingURL=RNCWebViewNativeComponent.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"RNCWebViewNativeComponent.d.ts","sourceRoot":"","sources":["../src/RNCWebViewNativeComponent.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import codegenNativeComponent from 'react-native/Libraries/Utilities/codegenNativeComponent';
|
|
2
|
-
import codegenNativeCommands from 'react-native/Libraries/Utilities/codegenNativeCommands';
|
|
3
|
-
export var Commands = codegenNativeCommands({
|
|
4
|
-
supportedCommands: ['goBack', 'goForward', 'reload', 'stopLoading', 'injectJavaScript', 'requestFocus', 'postMessage', 'loadUrl', 'clearFormData', 'clearCache', 'clearHistory']
|
|
5
|
-
});
|
|
6
|
-
export default codegenNativeComponent('BPCWebView');
|
package/windows/.gitignore
DELETED
|
@@ -1,353 +0,0 @@
|
|
|
1
|
-
## Ignore Visual Studio temporary files, build results, and
|
|
2
|
-
## files generated by popular Visual Studio add-ons.
|
|
3
|
-
##
|
|
4
|
-
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
|
|
5
|
-
|
|
6
|
-
# User-specific files
|
|
7
|
-
*.rsuser
|
|
8
|
-
*.suo
|
|
9
|
-
*.user
|
|
10
|
-
*.userosscache
|
|
11
|
-
*.sln.docstates
|
|
12
|
-
|
|
13
|
-
# User-specific files (MonoDevelop/Xamarin Studio)
|
|
14
|
-
*.userprefs
|
|
15
|
-
|
|
16
|
-
# Mono auto generated files
|
|
17
|
-
mono_crash.*
|
|
18
|
-
|
|
19
|
-
# Build results
|
|
20
|
-
[Dd]ebug/
|
|
21
|
-
[Dd]ebugPublic/
|
|
22
|
-
[Rr]elease/
|
|
23
|
-
[Rr]eleases/
|
|
24
|
-
x64/
|
|
25
|
-
x86/
|
|
26
|
-
[Aa][Rr][Mm]/
|
|
27
|
-
[Aa][Rr][Mm]64/
|
|
28
|
-
bld/
|
|
29
|
-
[Bb]in/
|
|
30
|
-
[Oo]bj/
|
|
31
|
-
[Ll]og/
|
|
32
|
-
[Ll]ogs/
|
|
33
|
-
|
|
34
|
-
# Visual Studio 2015/2017 cache/options directory
|
|
35
|
-
.vs/
|
|
36
|
-
# Uncomment if you have tasks that create the project's static files in wwwroot
|
|
37
|
-
#wwwroot/
|
|
38
|
-
|
|
39
|
-
# Visual Studio 2017 auto generated files
|
|
40
|
-
Generated\ Files/
|
|
41
|
-
|
|
42
|
-
# MSTest test Results
|
|
43
|
-
[Tt]est[Rr]esult*/
|
|
44
|
-
[Bb]uild[Ll]og.*
|
|
45
|
-
|
|
46
|
-
# NUnit
|
|
47
|
-
*.VisualState.xml
|
|
48
|
-
TestResult.xml
|
|
49
|
-
nunit-*.xml
|
|
50
|
-
|
|
51
|
-
# Build Results of an ATL Project
|
|
52
|
-
[Dd]ebugPS/
|
|
53
|
-
[Rr]eleasePS/
|
|
54
|
-
dlldata.c
|
|
55
|
-
|
|
56
|
-
# Benchmark Results
|
|
57
|
-
BenchmarkDotNet.Artifacts/
|
|
58
|
-
|
|
59
|
-
# .NET Core
|
|
60
|
-
project.lock.json
|
|
61
|
-
project.fragment.lock.json
|
|
62
|
-
artifacts/
|
|
63
|
-
|
|
64
|
-
# StyleCop
|
|
65
|
-
StyleCopReport.xml
|
|
66
|
-
|
|
67
|
-
# Files built by Visual Studio
|
|
68
|
-
*_i.c
|
|
69
|
-
*_p.c
|
|
70
|
-
*_h.h
|
|
71
|
-
*.ilk
|
|
72
|
-
*.meta
|
|
73
|
-
*.obj
|
|
74
|
-
*.iobj
|
|
75
|
-
*.pch
|
|
76
|
-
*.pdb
|
|
77
|
-
*.ipdb
|
|
78
|
-
*.pgc
|
|
79
|
-
*.pgd
|
|
80
|
-
*.rsp
|
|
81
|
-
*.sbr
|
|
82
|
-
*.tlb
|
|
83
|
-
*.tli
|
|
84
|
-
*.tlh
|
|
85
|
-
*.tmp
|
|
86
|
-
*.tmp_proj
|
|
87
|
-
*_wpftmp.csproj
|
|
88
|
-
*.log
|
|
89
|
-
*.vspscc
|
|
90
|
-
*.vssscc
|
|
91
|
-
.builds
|
|
92
|
-
*.pidb
|
|
93
|
-
*.svclog
|
|
94
|
-
*.scc
|
|
95
|
-
|
|
96
|
-
# Chutzpah Test files
|
|
97
|
-
_Chutzpah*
|
|
98
|
-
|
|
99
|
-
# Visual C++ cache files
|
|
100
|
-
ipch/
|
|
101
|
-
*.aps
|
|
102
|
-
*.ncb
|
|
103
|
-
*.opendb
|
|
104
|
-
*.opensdf
|
|
105
|
-
*.sdf
|
|
106
|
-
*.cachefile
|
|
107
|
-
*.VC.db
|
|
108
|
-
*.VC.VC.opendb
|
|
109
|
-
|
|
110
|
-
# Visual Studio profiler
|
|
111
|
-
*.psess
|
|
112
|
-
*.vsp
|
|
113
|
-
*.vspx
|
|
114
|
-
*.sap
|
|
115
|
-
|
|
116
|
-
# Visual Studio Trace Files
|
|
117
|
-
*.e2e
|
|
118
|
-
|
|
119
|
-
# TFS 2012 Local Workspace
|
|
120
|
-
$tf/
|
|
121
|
-
|
|
122
|
-
# Guidance Automation Toolkit
|
|
123
|
-
*.gpState
|
|
124
|
-
|
|
125
|
-
# ReSharper is a .NET coding add-in
|
|
126
|
-
_ReSharper*/
|
|
127
|
-
*.[Rr]e[Ss]harper
|
|
128
|
-
*.DotSettings.user
|
|
129
|
-
|
|
130
|
-
# TeamCity is a build add-in
|
|
131
|
-
_TeamCity*
|
|
132
|
-
|
|
133
|
-
# DotCover is a Code Coverage Tool
|
|
134
|
-
*.dotCover
|
|
135
|
-
|
|
136
|
-
# AxoCover is a Code Coverage Tool
|
|
137
|
-
.axoCover/*
|
|
138
|
-
!.axoCover/settings.json
|
|
139
|
-
|
|
140
|
-
# Coverlet is a free, cross platform Code Coverage Tool
|
|
141
|
-
coverage*[.json, .xml, .info]
|
|
142
|
-
|
|
143
|
-
# Visual Studio code coverage results
|
|
144
|
-
*.coverage
|
|
145
|
-
*.coveragexml
|
|
146
|
-
|
|
147
|
-
# NCrunch
|
|
148
|
-
_NCrunch_*
|
|
149
|
-
.*crunch*.local.xml
|
|
150
|
-
nCrunchTemp_*
|
|
151
|
-
|
|
152
|
-
# MightyMoose
|
|
153
|
-
*.mm.*
|
|
154
|
-
AutoTest.Net/
|
|
155
|
-
|
|
156
|
-
# Web workbench (sass)
|
|
157
|
-
.sass-cache/
|
|
158
|
-
|
|
159
|
-
# Installshield output folder
|
|
160
|
-
[Ee]xpress/
|
|
161
|
-
|
|
162
|
-
# DocProject is a documentation generator add-in
|
|
163
|
-
DocProject/buildhelp/
|
|
164
|
-
DocProject/Help/*.HxT
|
|
165
|
-
DocProject/Help/*.HxC
|
|
166
|
-
DocProject/Help/*.hhc
|
|
167
|
-
DocProject/Help/*.hhk
|
|
168
|
-
DocProject/Help/*.hhp
|
|
169
|
-
DocProject/Help/Html2
|
|
170
|
-
DocProject/Help/html
|
|
171
|
-
|
|
172
|
-
# Click-Once directory
|
|
173
|
-
publish/
|
|
174
|
-
|
|
175
|
-
# Publish Web Output
|
|
176
|
-
*.[Pp]ublish.xml
|
|
177
|
-
*.azurePubxml
|
|
178
|
-
# Note: Comment the next line if you want to checkin your web deploy settings,
|
|
179
|
-
# but database connection strings (with potential passwords) will be unencrypted
|
|
180
|
-
*.pubxml
|
|
181
|
-
*.publishproj
|
|
182
|
-
|
|
183
|
-
# Microsoft Azure Web App publish settings. Comment the next line if you want to
|
|
184
|
-
# checkin your Azure Web App publish settings, but sensitive information contained
|
|
185
|
-
# in these scripts will be unencrypted
|
|
186
|
-
PublishScripts/
|
|
187
|
-
|
|
188
|
-
# NuGet Packages
|
|
189
|
-
*.nupkg
|
|
190
|
-
# NuGet Symbol Packages
|
|
191
|
-
*.snupkg
|
|
192
|
-
# The packages folder can be ignored because of Package Restore
|
|
193
|
-
**/[Pp]ackages/*
|
|
194
|
-
# except build/, which is used as an MSBuild target.
|
|
195
|
-
!**/[Pp]ackages/build/
|
|
196
|
-
# Uncomment if necessary however generally it will be regenerated when needed
|
|
197
|
-
#!**/[Pp]ackages/repositories.config
|
|
198
|
-
# NuGet v3's project.json files produces more ignorable files
|
|
199
|
-
*.nuget.props
|
|
200
|
-
*.nuget.targets
|
|
201
|
-
|
|
202
|
-
# Microsoft Azure Build Output
|
|
203
|
-
csx/
|
|
204
|
-
*.build.csdef
|
|
205
|
-
|
|
206
|
-
# Microsoft Azure Emulator
|
|
207
|
-
ecf/
|
|
208
|
-
rcf/
|
|
209
|
-
|
|
210
|
-
# Windows Store app package directories and files
|
|
211
|
-
AppPackages/
|
|
212
|
-
BundleArtifacts/
|
|
213
|
-
Package.StoreAssociation.xml
|
|
214
|
-
_pkginfo.txt
|
|
215
|
-
*.appx
|
|
216
|
-
*.appxbundle
|
|
217
|
-
*.appxupload
|
|
218
|
-
|
|
219
|
-
# Visual Studio cache files
|
|
220
|
-
# files ending in .cache can be ignored
|
|
221
|
-
*.[Cc]ache
|
|
222
|
-
# but keep track of directories ending in .cache
|
|
223
|
-
!?*.[Cc]ache/
|
|
224
|
-
|
|
225
|
-
# Others
|
|
226
|
-
ClientBin/
|
|
227
|
-
~$*
|
|
228
|
-
*~
|
|
229
|
-
*.dbmdl
|
|
230
|
-
*.dbproj.schemaview
|
|
231
|
-
*.jfm
|
|
232
|
-
*.pfx
|
|
233
|
-
*.publishsettings
|
|
234
|
-
orleans.codegen.cs
|
|
235
|
-
|
|
236
|
-
# Including strong name files can present a security risk
|
|
237
|
-
# (https://github.com/github/gitignore/pull/2483#issue-259490424)
|
|
238
|
-
#*.snk
|
|
239
|
-
|
|
240
|
-
# Since there are multiple workflows, uncomment next line to ignore bower_components
|
|
241
|
-
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
|
|
242
|
-
#bower_components/
|
|
243
|
-
|
|
244
|
-
# RIA/Silverlight projects
|
|
245
|
-
Generated_Code/
|
|
246
|
-
|
|
247
|
-
# Backup & report files from converting an old project file
|
|
248
|
-
# to a newer Visual Studio version. Backup files are not needed,
|
|
249
|
-
# because we have git ;-)
|
|
250
|
-
_UpgradeReport_Files/
|
|
251
|
-
Backup*/
|
|
252
|
-
UpgradeLog*.XML
|
|
253
|
-
UpgradeLog*.htm
|
|
254
|
-
ServiceFabricBackup/
|
|
255
|
-
*.rptproj.bak
|
|
256
|
-
|
|
257
|
-
# SQL Server files
|
|
258
|
-
*.mdf
|
|
259
|
-
*.ldf
|
|
260
|
-
*.ndf
|
|
261
|
-
|
|
262
|
-
# Business Intelligence projects
|
|
263
|
-
*.rdl.data
|
|
264
|
-
*.bim.layout
|
|
265
|
-
*.bim_*.settings
|
|
266
|
-
*.rptproj.rsuser
|
|
267
|
-
*- [Bb]ackup.rdl
|
|
268
|
-
*- [Bb]ackup ([0-9]).rdl
|
|
269
|
-
*- [Bb]ackup ([0-9][0-9]).rdl
|
|
270
|
-
|
|
271
|
-
# Microsoft Fakes
|
|
272
|
-
FakesAssemblies/
|
|
273
|
-
|
|
274
|
-
# GhostDoc plugin setting file
|
|
275
|
-
*.GhostDoc.xml
|
|
276
|
-
|
|
277
|
-
# Node.js Tools for Visual Studio
|
|
278
|
-
.ntvs_analysis.dat
|
|
279
|
-
node_modules/
|
|
280
|
-
|
|
281
|
-
# Visual Studio 6 build log
|
|
282
|
-
*.plg
|
|
283
|
-
|
|
284
|
-
# Visual Studio 6 workspace options file
|
|
285
|
-
*.opt
|
|
286
|
-
|
|
287
|
-
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
|
|
288
|
-
*.vbw
|
|
289
|
-
|
|
290
|
-
# Visual Studio LightSwitch build output
|
|
291
|
-
**/*.HTMLClient/GeneratedArtifacts
|
|
292
|
-
**/*.DesktopClient/GeneratedArtifacts
|
|
293
|
-
**/*.DesktopClient/ModelManifest.xml
|
|
294
|
-
**/*.Server/GeneratedArtifacts
|
|
295
|
-
**/*.Server/ModelManifest.xml
|
|
296
|
-
_Pvt_Extensions
|
|
297
|
-
|
|
298
|
-
# Paket dependency manager
|
|
299
|
-
.paket/paket.exe
|
|
300
|
-
paket-files/
|
|
301
|
-
|
|
302
|
-
# FAKE - F# Make
|
|
303
|
-
.fake/
|
|
304
|
-
|
|
305
|
-
# CodeRush personal settings
|
|
306
|
-
.cr/personal
|
|
307
|
-
|
|
308
|
-
# Python Tools for Visual Studio (PTVS)
|
|
309
|
-
__pycache__/
|
|
310
|
-
*.pyc
|
|
311
|
-
|
|
312
|
-
# Cake - Uncomment if you are using it
|
|
313
|
-
# tools/**
|
|
314
|
-
# !tools/packages.config
|
|
315
|
-
|
|
316
|
-
# Tabs Studio
|
|
317
|
-
*.tss
|
|
318
|
-
|
|
319
|
-
# Telerik's JustMock configuration file
|
|
320
|
-
*.jmconfig
|
|
321
|
-
|
|
322
|
-
# BizTalk build output
|
|
323
|
-
*.btp.cs
|
|
324
|
-
*.btm.cs
|
|
325
|
-
*.odx.cs
|
|
326
|
-
*.xsd.cs
|
|
327
|
-
|
|
328
|
-
# OpenCover UI analysis results
|
|
329
|
-
OpenCover/
|
|
330
|
-
|
|
331
|
-
# Azure Stream Analytics local run output
|
|
332
|
-
ASALocalRun/
|
|
333
|
-
|
|
334
|
-
# MSBuild Binary and Structured Log
|
|
335
|
-
*.binlog
|
|
336
|
-
|
|
337
|
-
# NVidia Nsight GPU debugger configuration file
|
|
338
|
-
*.nvuser
|
|
339
|
-
|
|
340
|
-
# MFractors (Xamarin productivity tool) working folder
|
|
341
|
-
.mfractor/
|
|
342
|
-
|
|
343
|
-
# Local History for Visual Studio
|
|
344
|
-
.localhistory/
|
|
345
|
-
|
|
346
|
-
# BeatPulse healthcheck temp database
|
|
347
|
-
healthchecksdb
|
|
348
|
-
|
|
349
|
-
# Backup folder for Package Reference Convert tool in Visual Studio 2017
|
|
350
|
-
MigrationBackup/
|
|
351
|
-
|
|
352
|
-
# Ionide (cross platform F# VS Code tools) working folder
|
|
353
|
-
.ionide/
|