Skip to content

Commit e05dd0c

Browse files
authored
update (#1356)
1 parent ba4dd7c commit e05dd0c

5 files changed

Lines changed: 13 additions & 20 deletions

File tree

src/DurableTask.ApplicationInsights/DurableTask.ApplicationInsights.csproj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@
44
<PropertyGroup>
55
<TargetFrameworks>netstandard2.0</TargetFrameworks>
66
<PackageId>Microsoft.Azure.DurableTask.ApplicationInsights</PackageId>
7-
<!-- NuGet licenseUrl and PackageIconUrl/iconUrl deprecation. -->
8-
<NoWarn>NU5125;NU5048;CS7035</NoWarn> <!-- TODO: addition of CS7035 (version format doesn't follow convention) is a temporary workaround during 1ES migration -->
7+
<NoWarn>NU5125;CS7035</NoWarn> <!-- TODO: addition of CS7035 (version format doesn't follow convention) is a temporary workaround during 1ES migration -->
98
</PropertyGroup>
109

1110
<!-- Version Info -->

src/DurableTask.AzureStorage/DurableTask.AzureStorage.csproj

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,7 @@
1313
<DebugSymbols>true</DebugSymbols>
1414
<DebugType>embedded</DebugType>
1515
<IncludeSymbols>false</IncludeSymbols>
16-
<PackageReadmeFile>.\README.md</PackageReadmeFile>
17-
<!--NuGet licenseUrl and PackageIconUrl/iconUrl deprecation. -->
18-
<NoWarn>NU5125;NU5048;CS7035</NoWarn> <!-- TODO: addition of CS7035 (version format doesn't follow convention) is a temporary workaround during 1ES migration -->
16+
<NoWarn>NU5125;CS7035</NoWarn> <!-- TODO: addition of CS7035 (version format doesn't follow convention) is a temporary workaround during 1ES migration -->
1917
</PropertyGroup>
2018

2119
<!-- Version Info -->
@@ -52,10 +50,6 @@
5250
<ProjectReference Include="..\DurableTask.Core\DurableTask.Core.csproj" />
5351
</ItemGroup>
5452

55-
<ItemGroup>
56-
<None Include=".\..\..\README.md" Pack="true" PackagePath="\"/>
57-
</ItemGroup>
58-
5953
<ItemGroup Condition="'$(Configuration)'=='Release'">
6054
<Content Include="..\..\_manifest\**">
6155
<Pack>true</Pack>

src/DurableTask.Core/DurableTask.Core.csproj

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@
44
<PropertyGroup>
55
<TargetFramework>netstandard2.0</TargetFramework>
66
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
7-
<!--NuGet licenseUrl and PackageIconUrl/iconUrl deprecation. -->
8-
<NoWarn>NU5125;NU5048;CS7035</NoWarn> <!-- TODO: addition of CS7035 (version format doesn't follow convention) is a temporary workaround during 1ES migration -->
7+
<NoWarn>NU5125;CS7035</NoWarn> <!-- TODO: addition of CS7035 (version format doesn't follow convention) is a temporary workaround during 1ES migration -->
98
</PropertyGroup>
109

1110
<!-- General Package Info -->
@@ -26,7 +25,6 @@
2625
<FileVersion Condition="'$(FileVersionRevision)' != ''">$(VersionPrefix).$([MSBuild]::Modulo($(FileVersionRevision), 65536))</FileVersion>
2726
<!-- The assembly version is only the major/minor pair, making it easier to do in-place upgrades -->
2827
<AssemblyVersion>$(MajorVersion).$(MinorVersion).0.0</AssemblyVersion>
29-
<PackageReadmeFile>.\README.md</PackageReadmeFile>
3028
</PropertyGroup>
3129

3230
<!-- This version is used as the nuget package version -->
@@ -46,10 +44,6 @@
4644
<PackageReference Include="Castle.Core" />
4745
</ItemGroup>
4846

49-
<ItemGroup>
50-
<None Include=".\..\..\README.md" Pack="true" PackagePath="\"/>
51-
</ItemGroup>
52-
5347
<ItemGroup Condition="'$(Configuration)'=='Release'">
5448
<Content Include="..\..\_manifest\**">
5549
<Pack>true</Pack>

src/DurableTask.Emulator/DurableTask.Emulator.csproj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@
44
<PropertyGroup>
55
<TargetFrameworks>netstandard2.0;net48</TargetFrameworks>
66
<PackageId>Microsoft.Azure.DurableTask.Emulator</PackageId>
7-
<!--NuGet licenseUrl and PackageIconUrl/iconUrl deprecation. -->
8-
<NoWarn>NU5125;NU5048</NoWarn>
7+
<NoWarn>NU5125</NoWarn>
98
</PropertyGroup>
109

1110
<ItemGroup>

tools/DurableTask.props

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<GenerateDocumentationFile>true</GenerateDocumentationFile>
88
<LangVersion>9.0</LangVersion>
99
<!-- See https://github.com/Azure/durabletask/issues/428 -->
10-
<NoWarn>NU5125,NU5048</NoWarn>
10+
<NoWarn>NU5125</NoWarn>
1111
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
1212
<!-- SourceLink Settings-->
1313
<PublishRepositoryUrl>true</PublishRepositoryUrl>
@@ -50,13 +50,20 @@
5050
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright>
5151
<PackageProjectUrl>https://github.com/Azure/durabletask/</PackageProjectUrl>
5252
<RepositoryUrl>https://github.com/Azure/durabletask/</RepositoryUrl>
53-
<PackageIconUrl>https://github.com/Azure/durabletask/blob/master/logo.png?raw=true</PackageIconUrl>
53+
<PackageIcon>logo.png</PackageIcon>
54+
<PackageReadmeFile>README.md</PackageReadmeFile>
5455
<PackageTags>ServiceBus Azure Task Durable Orchestration Workflow Activity Reliable</PackageTags>
5556
<NeutralLanguage>en-US</NeutralLanguage>
5657
<IncludeSymbols>true</IncludeSymbols>
5758
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
5859
</PropertyGroup>
5960

61+
<!-- Pack shared assets (icon and README) -->
62+
<ItemGroup Condition="'$(IsPackable)' != 'false'">
63+
<None Include="$(MSBuildThisFileDirectory)..\logo.png" Pack="true" PackagePath="\" />
64+
<None Include="$(MSBuildThisFileDirectory)..\README.md" Pack="true" PackagePath="\" />
65+
</ItemGroup>
66+
6067
<Target Name="Build">
6168
</Target>
6269
</Project>

0 commit comments

Comments
 (0)