Skip to content

Commit 71f5d4e

Browse files
authored
move abstractions reference to myget, and all src (#5988)
1 parent 989c255 commit 71f5d4e

File tree

13 files changed

+5
-363
lines changed

13 files changed

+5
-363
lines changed

WebJobs.Script.sln

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -308,8 +308,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "HttpTrigger", "HttpTrigger"
308308
sample\Python\HttpTrigger\function.json = sample\Python\HttpTrigger\function.json
309309
EndProjectSection
310310
EndProject
311-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WebJobs.Script.Abstractions", "src\WebJobs.Script.Abstractions\WebJobs.Script.Abstractions.csproj", "{9A522D9D-2D86-4572-B7D1-ECBFBFAF312C}"
312-
EndProject
313311
Global
314312
GlobalSection(SharedMSBuildProjectFiles) = preSolution
315313
test\WebJobs.Script.Tests.Shared\WebJobs.Script.Tests.Shared.projitems*{35c9ccb7-d8b6-4161-bb0d-bcfa7c6dcffb}*SharedItemsImports = 13
@@ -345,10 +343,6 @@ Global
345343
{5C308A72-5CF3-45E8-B64F-2C98F567054A}.Debug|Any CPU.Build.0 = Debug|Any CPU
346344
{5C308A72-5CF3-45E8-B64F-2C98F567054A}.Release|Any CPU.ActiveCfg = Release|Any CPU
347345
{5C308A72-5CF3-45E8-B64F-2C98F567054A}.Release|Any CPU.Build.0 = Release|Any CPU
348-
{9A522D9D-2D86-4572-B7D1-ECBFBFAF312C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
349-
{9A522D9D-2D86-4572-B7D1-ECBFBFAF312C}.Debug|Any CPU.Build.0 = Debug|Any CPU
350-
{9A522D9D-2D86-4572-B7D1-ECBFBFAF312C}.Release|Any CPU.ActiveCfg = Release|Any CPU
351-
{9A522D9D-2D86-4572-B7D1-ECBFBFAF312C}.Release|Any CPU.Build.0 = Release|Any CPU
352346
EndGlobalSection
353347
GlobalSection(SolutionProperties) = preSolution
354348
HideSolutionNode = FALSE
@@ -407,7 +401,6 @@ Global
407401
{EA8288BA-CB4D-4B9C-ADF8-F4B7C41466EF} = {FA3EB27D-D1C1-4AE0-A928-CF3882D929CD}
408402
{0AE3CE25-4CD9-4769-AE58-399FC59CF70F} = {FF9C0818-30D3-437A-A62D-7A61CA44F459}
409403
{BA45A727-34B7-484F-9B93-B1755AF09A2A} = {0AE3CE25-4CD9-4769-AE58-399FC59CF70F}
410-
{9A522D9D-2D86-4572-B7D1-ECBFBFAF312C} = {16351B76-87CA-4A8C-80A1-3DD83A0C4AA6}
411404
EndGlobalSection
412405
GlobalSection(ExtensibilityGlobals) = postSolution
413406
SolutionGuid = {85400884-5FFD-4C27-A571-58CB3C8CAAC5}

azure-pipelines.yml

Lines changed: 0 additions & 79 deletions
Original file line numberDiff line numberDiff line change
@@ -64,83 +64,6 @@ jobs:
6464
inputs:
6565
filePath: '$(Build.Repository.LocalPath)\build.ps1'
6666
arguments: '-buildNumber "$(buildNumber)" -suffix "$(suffix)"'
67-
- task: DotNetCoreCLI@2
68-
displayName: 'Build WebJobs.Script.Abstractions'
69-
inputs:
70-
command: 'build'
71-
arguments: '-c Release'
72-
projects: |
73-
**\WebJobs.Script.Abstractions.csproj
74-
- task: SFP.build-tasks.custom-build-task-1.EsrpCodeSigning@1
75-
displayName: 'ESRP CodeSigning: Strong Name and Authenticode'
76-
inputs:
77-
ConnectedServiceName: 'ESRP Service'
78-
FolderPath: 'src\WebJobs.Script.Abstractions\bin\Release'
79-
Pattern: Microsoft.Azure.WebJobs.Script.Abstractions*.dll
80-
signConfigType: inlineSignParams
81-
inlineOperation: |
82-
[
83-
{
84-
"KeyCode": "CP-230012",
85-
"OperationCode": "SigntoolSign",
86-
"Parameters": {
87-
"OpusName": "Microsoft",
88-
"OpusInfo": "http://www.microsoft.com",
89-
"FileDigest": "/fd \"SHA256\"",
90-
"PageHash": "/NPH",
91-
"TimeStamp": "/tr \"http://rfc3161.gtm.corp.microsoft.com/TSS/HttpTspServer\" /td sha256"
92-
},
93-
"ToolName": "sign",
94-
"ToolVersion": "1.0"
95-
},
96-
{
97-
"KeyCode": "CP-230012",
98-
"OperationCode": "SigntoolVerify",
99-
"Parameters": {},
100-
"ToolName": "sign",
101-
"ToolVersion": "1.0"
102-
}
103-
]
104-
- task: DeleteFiles@1
105-
displayName: 'Delete CodeSignSummary files'
106-
inputs:
107-
contents: '**\CodeSignSummary-*.md'
108-
- task: DotNetCoreCLI@2
109-
displayName: 'Pack WebJobs.Script.Abstractions package'
110-
inputs:
111-
command: 'custom'
112-
custom: 'pack'
113-
arguments: '--no-build -c Release -o packages\WebJobs.Script.Abstractions -p:PackageVersion=2.0.$(buildNumber)$(suffix)'
114-
projects: |
115-
**\WebJobs.Script.Abstractions.csproj
116-
- task: SFP.build-tasks.custom-build-task-1.EsrpCodeSigning@1
117-
displayName: 'ESRP CodeSigning: Nupkg'
118-
inputs:
119-
ConnectedServiceName: 'ESRP Service'
120-
FolderPath: 'packages\WebJobs.Script.Abstractions'
121-
Pattern: 'Microsoft.Azure.WebJobs.Script.Abstractions*.nupkg'
122-
signConfigType: inlineSignParams
123-
inlineOperation: |
124-
[
125-
{
126-
"KeyCode": "CP-401405",
127-
"OperationCode": "NuGetSign",
128-
"Parameters": {},
129-
"ToolName": "sign",
130-
"ToolVersion": "1.0"
131-
},
132-
{
133-
"KeyCode": "CP-401405",
134-
"OperationCode": "NuGetVerify",
135-
"Parameters": {},
136-
"ToolName": "sign",
137-
"ToolVersion": "1.0"
138-
}
139-
]
140-
- task: DeleteFiles@1
141-
displayName: 'Delete CodeSignSummary files'
142-
inputs:
143-
contents: '**\CodeSignSummary-*.md'
14467
- task: DotNetCoreCLI@2
14568
displayName: 'Build ExtensionsMetadataGenerator'
14669
inputs:
@@ -269,8 +192,6 @@ jobs:
269192
artifact: Microsoft.Azure.WebJobs.Script.2.0.$(buildNumber)$(suffix)
270193
- publish: $(Build.ArtifactStagingDirectory)\Microsoft.Azure.WebJobs.Script.Grpc.2.0.$(buildNumber)$(suffix).nupkg
271194
artifact: Microsoft.Azure.WebJobs.Script.Grpc.2.0.$(buildNumber)$(suffix)
272-
- publish: $(Build.Repository.LocalPath)\packages\WebJobs.Script.Abstractions\Microsoft.Azure.WebJobs.Script.Abstractions.2.0.$(buildNumber)$(suffix).nupkg
273-
artifact: Microsoft.Azure.WebJobs.Script.Abstractions.2.0.$(buildNumber)$(suffix)
274195
- publish: $(Build.ArtifactStagingDirectory)\Microsoft.Azure.WebJobs.Script.WebHost.2.0.$(buildNumber)$(suffix).nupkg
275196
artifact: Microsoft.Azure.WebJobs.Script.WebHost.2.0.$(buildNumber)$(suffix)
276197
condition: succeeded()

src/WebJobs.Script.Abstractions/Description/Binding/BindingDirection.cs

Lines changed: 0 additions & 12 deletions
This file was deleted.

src/WebJobs.Script.Abstractions/Description/Binding/BindingMetadata.cs

Lines changed: 0 additions & 101 deletions
This file was deleted.

src/WebJobs.Script.Abstractions/Description/Binding/Cardinality.cs

Lines changed: 0 additions & 21 deletions
This file was deleted.

src/WebJobs.Script.Abstractions/Description/Binding/DataType.cs

Lines changed: 0 additions & 16 deletions
This file was deleted.

src/WebJobs.Script.Abstractions/Description/FunctionMetadata.cs

Lines changed: 0 additions & 68 deletions
This file was deleted.

src/WebJobs.Script.Abstractions/Description/IFunctionProvider.cs

Lines changed: 0 additions & 23 deletions
This file was deleted.

src/WebJobs.Script.Abstractions/WebJobs.Script.Abstractions.csproj

Lines changed: 0 additions & 28 deletions
This file was deleted.
-596 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)