Skip to content

Commit d0f16fb

Browse files
committed
Updated subtree from https://github.com/azure/azure-functions-language-worker-protobuf. Tag: v.1.12.0-protofile
1 parent 8dd4f99 commit d0f16fb

File tree

9 files changed

+1029
-198
lines changed

9 files changed

+1029
-198
lines changed

.gitignore

Lines changed: 21 additions & 100 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,7 @@
33
##
44
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
55

6-
Azure.Functions.Cli
7-
azurite
8-
9-
# For local nuget packages
10-
[Ll]ocal/
11-
12-
# ignore protobuf
13-
src/protos
14-
156
# User-specific files
16-
*.rsuser
177
*.suo
188
*.user
199
*.userosscache
@@ -22,68 +12,50 @@ src/protos
2212
# User-specific files (MonoDevelop/Xamarin Studio)
2313
*.userprefs
2414

25-
# Mono auto generated files
26-
mono_crash.*
27-
2815
# Build results
2916
[Dd]ebug/
3017
[Dd]ebugPublic/
3118
[Rr]elease/
3219
[Rr]eleases/
3320
x64/
3421
x86/
35-
[Aa][Rr][Mm]/
36-
[Aa][Rr][Mm]64/
3722
bld/
3823
[Bb]in/
3924
[Oo]bj/
4025
[Ll]og/
41-
[Ll]ogs/
4226

43-
# Visual Studio 2015/2017 cache/options directory
27+
# Visual Studio 2015 cache/options directory
4428
.vs/
4529
# Uncomment if you have tasks that create the project's static files in wwwroot
4630
#wwwroot/
4731

48-
# Visual Studio 2017 auto generated files
49-
Generated\ Files/
50-
5132
# MSTest test Results
5233
[Tt]est[Rr]esult*/
5334
[Bb]uild[Ll]og.*
5435

55-
# NUnit
36+
# NUNIT
5637
*.VisualState.xml
5738
TestResult.xml
58-
nunit-*.xml
5939

6040
# Build Results of an ATL Project
6141
[Dd]ebugPS/
6242
[Rr]eleasePS/
6343
dlldata.c
6444

65-
# Benchmark Results
66-
BenchmarkDotNet.Artifacts/
67-
6845
# .NET Core
6946
project.lock.json
7047
project.fragment.lock.json
7148
artifacts/
49+
**/Properties/launchSettings.json
7250

73-
# StyleCop
74-
StyleCopReport.xml
75-
76-
# Files built by Visual Studio
7751
*_i.c
7852
*_p.c
79-
*_h.h
53+
*_i.h
8054
*.ilk
8155
*.meta
8256
*.obj
83-
*.iobj
8457
*.pch
8558
*.pdb
86-
*.ipdb
8759
*.pgc
8860
*.pgd
8961
*.rsp
@@ -93,7 +65,6 @@ StyleCopReport.xml
9365
*.tlh
9466
*.tmp
9567
*.tmp_proj
96-
*_wpftmp.csproj
9768
*.log
9869
*.vspscc
9970
*.vssscc
@@ -122,9 +93,6 @@ ipch/
12293
*.vspx
12394
*.sap
12495

125-
# Visual Studio Trace Files
126-
*.e2e
127-
12896
# TFS 2012 Local Workspace
12997
$tf/
13098

@@ -136,16 +104,15 @@ _ReSharper*/
136104
*.[Rr]e[Ss]harper
137105
*.DotSettings.user
138106

107+
# JustCode is a .NET coding add-in
108+
.JustCode
109+
139110
# TeamCity is a build add-in
140111
_TeamCity*
141112

142113
# DotCover is a Code Coverage Tool
143114
*.dotCover
144115

145-
# AxoCover is a Code Coverage Tool
146-
.axoCover/*
147-
!.axoCover/settings.json
148-
149116
# Visual Studio code coverage results
150117
*.coverage
151118
*.coveragexml
@@ -181,7 +148,7 @@ publish/
181148
# Publish Web Output
182149
*.[Pp]ublish.xml
183150
*.azurePubxml
184-
# Note: Comment the next line if you want to checkin your web deploy settings,
151+
# TODO: Comment the next line if you want to checkin your web deploy settings
185152
# but database connection strings (with potential passwords) will be unencrypted
186153
*.pubxml
187154
*.publishproj
@@ -193,14 +160,12 @@ PublishScripts/
193160

194161
# NuGet Packages
195162
*.nupkg
196-
# NuGet Symbol Packages
197-
*.snupkg
198163
# The packages folder can be ignored because of Package Restore
199-
**/[Pp]ackages/*
164+
**/packages/*
200165
# except build/, which is used as an MSBuild target.
201-
!**/[Pp]ackages/build/
166+
!**/packages/build/
202167
# Uncomment if necessary however generally it will be regenerated when needed
203-
#!**/[Pp]ackages/repositories.config
168+
#!**/packages/repositories.config
204169
# NuGet v3's project.json files produces more ignorable files
205170
*.nuget.props
206171
*.nuget.targets
@@ -218,15 +183,12 @@ AppPackages/
218183
BundleArtifacts/
219184
Package.StoreAssociation.xml
220185
_pkginfo.txt
221-
*.appx
222-
*.appxbundle
223-
*.appxupload
224186

225187
# Visual Studio cache files
226188
# files ending in .cache can be ignored
227189
*.[Cc]ache
228190
# but keep track of directories ending in .cache
229-
!?*.[Cc]ache/
191+
!*.[Cc]ache/
230192

231193
# Others
232194
ClientBin/
@@ -239,10 +201,6 @@ ClientBin/
239201
*.publishsettings
240202
orleans.codegen.cs
241203

242-
# Including strong name files can present a security risk
243-
# (https://github.com/github/gitignore/pull/2483#issue-259490424)
244-
#*.snk
245-
246204
# Since there are multiple workflows, uncomment next line to ignore bower_components
247205
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
248206
#bower_components/
@@ -257,8 +215,6 @@ _UpgradeReport_Files/
257215
Backup*/
258216
UpgradeLog*.XML
259217
UpgradeLog*.htm
260-
ServiceFabricBackup/
261-
*.rptproj.bak
262218

263219
# SQL Server files
264220
*.mdf
@@ -269,10 +225,6 @@ ServiceFabricBackup/
269225
*.rdl.data
270226
*.bim.layout
271227
*.bim_*.settings
272-
*.rptproj.rsuser
273-
*- [Bb]ackup.rdl
274-
*- [Bb]ackup ([0-9]).rdl
275-
*- [Bb]ackup ([0-9][0-9]).rdl
276228

277229
# Microsoft Fakes
278230
FakesAssemblies/
@@ -284,6 +236,9 @@ FakesAssemblies/
284236
.ntvs_analysis.dat
285237
node_modules/
286238

239+
# Typescript v1 declaration files
240+
typings/
241+
287242
# Visual Studio 6 build log
288243
*.plg
289244

@@ -308,8 +263,12 @@ paket-files/
308263
# FAKE - F# Make
309264
.fake/
310265

311-
# CodeRush personal settings
312-
.cr/personal
266+
# JetBrains Rider
267+
.idea/
268+
*.sln.iml
269+
270+
# CodeRush
271+
.cr/
313272

314273
# Python Tools for Visual Studio (PTVS)
315274
__pycache__/
@@ -319,9 +278,6 @@ __pycache__/
319278
# tools/**
320279
# !tools/packages.config
321280

322-
# Tabs Studio
323-
*.tss
324-
325281
# Telerik's JustMock configuration file
326282
*.jmconfig
327283

@@ -330,38 +286,3 @@ __pycache__/
330286
*.btm.cs
331287
*.odx.cs
332288
*.xsd.cs
333-
334-
# OpenCover UI analysis results
335-
OpenCover/
336-
337-
# Azure Stream Analytics local run output
338-
ASALocalRun/
339-
340-
# MSBuild Binary and Structured Log
341-
*.binlog
342-
343-
# NVidia Nsight GPU debugger configuration file
344-
*.nvuser
345-
346-
# MFractors (Xamarin productivity tool) working folder
347-
.mfractor/
348-
349-
# Local History for Visual Studio
350-
.localhistory/
351-
352-
# BeatPulse healthcheck temp database
353-
healthchecksdb
354-
355-
# Backup folder for Package Reference Convert tool in Visual Studio 2017
356-
MigrationBackup/
357-
358-
# Ionide (cross platform F# VS Code tools) working folder
359-
.ionide/
360-
361-
.DS_Store
362-
# Entity framework sample
363-
Migrations/
364-
local.settings.json
365-
/tools/localpack.ps1
366-
/.vscode
367-
/.idea

CODEOWNERS

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# See https://help.github.com/articles/about-codeowners/
2+
# for more info about CODEOWNERS file
3+
#
4+
# It uses the same pattern rule for gitignore file
5+
# https://git-scm.com/docs/gitignore#_pattern_format
6+
7+
8+
9+
# AZURE FUNCTIONS TEAM
10+
# For all file changes, github would automatically
11+
# include the following people in the PRs.
12+
# Language owners should get notified of any new changes to the proto file.
13+
14+
src/proto/FunctionRpc.proto @vrdmr @gavin-aguiar @YunchuWang @surgupta-msft @satvu @alrod @anatolib @kaibocai @shreyas-gopalakrishna @amamounelsayed @Francisco-Gamino

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) Microsoft Corporation.
3+
Copyright (c) Microsoft Corporation. All rights reserved.
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

0 commit comments

Comments
 (0)