|
28 | 28 |
|
29 | 29 | # Extensions necessary for non-core bindings.
|
30 | 30 | AZURE_EXTENSIONS = """\
|
| 31 | +<?xml version="1.0" encoding="UTF-8"?> |
31 | 32 | <Project Sdk="Microsoft.NET.Sdk">
|
32 |
| - <PropertyGroup> |
33 |
| - <TargetFramework>netcoreapp3.1</TargetFramework> |
34 |
| - <AzureFunctionsVersion>v3</AzureFunctionsVersion> |
35 |
| - <WarningsAsErrors></WarningsAsErrors> |
36 |
| - <DefaultItemExcludes>**</DefaultItemExcludes> |
37 |
| - </PropertyGroup> |
38 |
| - <ItemGroup> |
39 |
| - <PackageReference |
40 |
| - Include="Microsoft.NET.Sdk.Functions" |
41 |
| - Version="4.0.1" |
42 |
| - /> |
43 |
| - <PackageReference |
44 |
| - Include="Microsoft.Azure.WebJobs.Extensions.CosmosDB" |
45 |
| - Version="3.0.10" |
46 |
| - /> |
47 |
| - <PackageReference |
48 |
| - Include="Microsoft.Azure.WebJobs.Extensions.EventHubs" |
49 |
| - Version="5.0.0" |
50 |
| - /> |
51 |
| - <PackageReference |
52 |
| - Include="Microsoft.Azure.WebJobs.Extensions.EventGrid" |
53 |
| - Version="3.1.0" |
54 |
| - /> |
55 |
| - <PackageReference |
56 |
| - Include="Microsoft.Azure.WebJobs.Extensions.Storage" |
57 |
| - Version="4.0.5" |
58 |
| - /> |
59 |
| - <PackageReference |
60 |
| - Include="Microsoft.Azure.WebJobs.Extensions.ServiceBus" |
61 |
| - Version="4.2.1" |
62 |
| - /> |
63 |
| - <PackageReference |
64 |
| - Include="Microsoft.Azure.WebJobs.Script.ExtensionsMetadataGenerator" |
65 |
| - Version="1.1.3" /> |
66 |
| - </ItemGroup> |
| 33 | + <PropertyGroup> |
| 34 | + <TargetFramework>netcoreapp3.1</TargetFramework> |
| 35 | + <AzureFunctionsVersion>v3</AzureFunctionsVersion> |
| 36 | + <WarningsAsErrors /> |
| 37 | + <DefaultItemExcludes>**</DefaultItemExcludes> |
| 38 | + </PropertyGroup> |
| 39 | + <ItemGroup> |
| 40 | + <PackageReference Include="Microsoft.NET.Sdk.Functions" |
| 41 | + Version="4.0.1" /> |
| 42 | + <PackageReference Include="Microsoft.Azure.WebJobs.Extensions.CosmosDB" |
| 43 | + Version="3.0.10" /> |
| 44 | + <PackageReference Include="Microsoft.Azure.WebJobs.Extensions.EventHubs" |
| 45 | + Version="5.0.0" /> |
| 46 | + <PackageReference Include="Microsoft.Azure.WebJobs.Extensions.EventGrid" |
| 47 | + Version="3.1.0" /> |
| 48 | + <PackageReference Include="Microsoft.Azure.WebJobs.Extensions.Storage" |
| 49 | + Version="4.0.5" /> |
| 50 | + <PackageReference Include="Microsoft.Azure.WebJobs.Extensions.ServiceBus" |
| 51 | + Version="4.2.1" /> |
| 52 | + <PackageReference |
| 53 | + Include="Microsoft.Azure.WebJobs.Script.ExtensionsMetadataGenerator" |
| 54 | + Version="1.1.3" /> |
| 55 | + </ItemGroup> |
67 | 56 | </Project>
|
68 | 57 | """
|
69 | 58 |
|
70 | 59 |
|
71 | 60 | NUGET_CONFIG = """\
|
72 |
| -<?xml version="1.0" encoding="utf-8"?> |
| 61 | +<?xml version="1.0" encoding="UTF-8"?> |
73 | 62 | <configuration>
|
74 |
| - <packageSources> |
75 |
| - <add key="nuget.org" value="https://www.nuget.org/api/v2/" /> |
76 |
| - <add key="azure_app_service" |
77 |
| - value="https://www.myget.org/F/azure-appservice/api/v2" /> |
78 |
| - <add key="azure_app_service_staging" |
79 |
| - value="https://www.myget.org/F/azure-appservice-staging/api/v2" /> |
80 |
| - <add key="buildTools" |
81 |
| - value="https://www.myget.org/F/30de4ee06dd54956a82013fa17a3accb/" /> |
82 |
| - <add key="AspNetVNext" |
83 |
| - value="https://www.myget.org/F/aspnetcore-dev/api/v3/index.json" /> |
84 |
| - </packageSources> |
| 63 | + <packageSources> |
| 64 | + <add key="nuget.org" |
| 65 | + value="https://www.nuget.org/api/v2/" /> |
| 66 | + <add key="azure_app_service" |
| 67 | + value="https://www.myget.org/F/azure-appservice/api/v2" /> |
| 68 | + <add key="azure_app_service_staging" |
| 69 | + value="https://www.myget.org/F/azure-appservice-staging/api/v2" /> |
| 70 | + <add key="buildTools" |
| 71 | + value="https://www.myget.org/F/30de4ee06dd54956a82013fa17a3accb/" /> |
| 72 | + <add key="AspNetVNext" |
| 73 | + value="https://www.myget.org/F/aspnetcore-dev/api/v3/index.json" /> |
| 74 | + </packageSources> |
85 | 75 | </configuration>
|
86 | 76 | """
|
87 | 77 |
|
|
0 commit comments