Skip to content

Commit 3e66036

Browse files
pragnagopagzuber
authored andcommitted
Fix Nuget Errors on Building artifacts (#6514)
1 parent 038121e commit 3e66036

File tree

5 files changed

+4
-4
lines changed

5 files changed

+4
-4
lines changed

build/package.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<RepositoryType>git</RepositoryType>
99
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright>
1010
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
11-
<PackageLicenseUrl>https://go.microsoft.com/fwlink/?linkid=2028464</PackageLicenseUrl>
12-
<PackageIconUrl>https://raw.githubusercontent.com/Azure/azure-webjobs-sdk/dev/webjobs.png</PackageIconUrl>
11+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
12+
<Icon>webjobs.png</Icon>
1313
</PropertyGroup>
1414
</Project>

build/webjobs.png

14.5 KB
Loading

src/WebJobs.Script.Grpc/WebJobs.Script.Grpc.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
<Import Project="..\..\build\common.props" />
33
<PropertyGroup>
44
<PackageId>Microsoft.Azure.WebJobs.Script.Grpc</PackageId>
5-
<PackageIconUrl>https://raw.githubusercontent.com/Azure/azure-webjobs-sdk/dev/webjobs.png</PackageIconUrl>
65
<AssemblyName>Microsoft.Azure.WebJobs.Script.Grpc</AssemblyName>
76
<RootNamespace>Microsoft.Azure.WebJobs.Script.Grpc</RootNamespace>
87
<Ext Condition="'$(OS)' == 'Windows_NT'">bat</Ext>

src/WebJobs.Script.WebHost/WebJobs.Script.WebHost.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
<PackageId>Microsoft.Azure.WebJobs.Script.WebHost</PackageId>
99
<IsPackable Condition="'$(IsPackable)' != ''">true</IsPackable>
1010
<AspNetCoreHostingModel>InProcess</AspNetCoreHostingModel>
11+
<NoWarn>NU5104</NoWarn>
1112
</PropertyGroup>
1213
<PropertyGroup>
1314
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>

src/WebJobs.Script/WebJobs.Script.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
<Import Project="..\..\build\common.props" />
33
<PropertyGroup>
44
<PackageId>Microsoft.Azure.WebJobs.Script</PackageId>
5-
<PackageIconUrl>https://raw.githubusercontent.com/Azure/azure-webjobs-sdk/dev/webjobs.png</PackageIconUrl>
65
<AssemblyName>Microsoft.Azure.WebJobs.Script</AssemblyName>
76
<RootNamespace>Microsoft.Azure.WebJobs.Script</RootNamespace>
7+
<NoWarn>NU5104</NoWarn>
88
</PropertyGroup>
99
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
1010
<StyleCopTreatErrorsAsWarnings>false</StyleCopTreatErrorsAsWarnings>

0 commit comments

Comments
 (0)