Skip to content

Commit 659221a

Browse files
pragnagopaankitkumarr
authored andcommitted
[pack]Fix Nuget Errors on Building artifacts (#6514)
1 parent 4451672 commit 659221a

File tree

6 files changed

+5
-6
lines changed

6 files changed

+5
-6
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.Abstractions/WebJobs.Script.Abstractions.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<CommitHash Condition="$(CommitHash) == ''">N/A</CommitHash>
99
<InformationalVersion>$(FileVersion)$(RuntimeReleaseSuffix) Commit hash: $(CommitHash)</InformationalVersion>
1010
<PackageId>Microsoft.Azure.WebJobs.Script.Abstractions</PackageId>
11-
<PackageIconUrl>https://raw.githubusercontent.com/Azure/azure-webjobs-sdk/dev/webjobs.png</PackageIconUrl>
11+
<Icon>webjobs.png</Icon>
1212
<AssemblyName>Microsoft.Azure.WebJobs.Script.Abstractions</AssemblyName>
1313
<RootNamespace>Microsoft.Azure.WebJobs.Script.Abstractions</RootNamespace>
1414
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)key.snk</AssemblyOriginatorKeyFile>

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 & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
<IsPackable Condition="'$(IsPackable)' != ''">true</IsPackable>
1010
<AspNetCoreHostingModel>InProcess</AspNetCoreHostingModel>
1111
<TieredCompilation>false</TieredCompilation>
12+
<NoWarn>NU5104</NoWarn>
1213
</PropertyGroup>
1314
<PropertyGroup Condition="'$(RuntimeIdentifier)' != ''">
1415
<PublishReadyToRun>true</PublishReadyToRun>
@@ -60,7 +61,6 @@
6061
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.1.0" />
6162
<PackageReference Include="Microsoft.Azure.AppService.Middleware.Functions" Version="1.0.0-preview6" />
6263
<PackageReference Include="Microsoft.Azure.AppService.Proxy.Client" Version="2.0.11020001-fabe022e" />
63-
<PackageReference Include="DotNetTI.BreakingChangeAnalysis" Version="1.0.5-preview" />
6464
<PackageReference Include="Microsoft.Azure.Services.AppAuthentication" Version="1.0.3" />
6565
<PackageReference Include="Microsoft.Azure.Storage.File" Version="11.1.7" />
6666
<PackageReference Include="Microsoft.Azure.WebJobs.Host.Storage" Version="4.0.1" />

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)