Skip to content
This repository has been archived by the owner on Aug 27, 2024. It is now read-only.

Commit

Permalink
chore: support net8.0 version (#313)
Browse files Browse the repository at this point in the history
* chore: support net8.0 version

* pr-ix: correct tests & extensions w/ new major versions
  • Loading branch information
stijnmoreels authored Apr 27, 2024
1 parent 76457c5 commit a8315a4
Show file tree
Hide file tree
Showing 20 changed files with 168 additions and 399 deletions.
17 changes: 6 additions & 11 deletions src/Arcus.EventGrid.Core/Arcus.EventGrid.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,27 +17,22 @@
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>

<PropertyGroup>
<!-- Temporary disable preview package usage warning as we are building our preview Arcus .NET 8 package, will be removed once we have a new major Arcus package -->
<NoWarn>NU5104</NoWarn>
</PropertyGroup>

<ItemGroup>
<None Include="..\..\README.md" Pack="true" PackagePath="\" />
<None Include="..\..\LICENSE" Pack="true" PackagePath="\" />
<None Include="..\..\docs\static\img\icon.png" Pack="true" PackagePath="\"/>
<None Include="..\..\docs\static\img\icon.png" Pack="true" PackagePath="\" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.1'">
<PackageReference Include="System.Text.Json" Version="6.0.5" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Arcus.Observability.Correlation" Version="[3.0.0-preview-1-net8.0,4.0.0)" />
<PackageReference Include="Arcus.Observability.Telemetry.Core" Version="[3.0.0-preview-1-net8.0,4.0.0)" />
<PackageReference Include="Arcus.Security.Core" Version="[2.0.0-preview-1-net8.0,3.0.0)" />
<PackageReference Include="Arcus.Observability.Correlation" Version="[3.0.0,4.0.0)" />
<PackageReference Include="Arcus.Observability.Telemetry.Core" Version="[3.0.0.0,4.0.0)" />
<PackageReference Include="Arcus.Security.Core" Version="[2.0.0,3.0.0)" />
<PackageReference Include="Azure.Messaging.EventGrid" Version="4.11.0" />
<PackageReference Include="Microsoft.Extensions.Azure" Version="1.3.0" />
<PackageReference Include="Microsoft.Extensions.Azure" Version="1.7.2" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="6.0.0" />
<PackageReference Include="Polly" Version="7.2.1" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,12 @@

<ItemGroup>
<PackageReference Include="Guard.NET" Version="3.0.0" />
<PackageReference Include="Azure.Messaging.EventGrid" Version="4.11.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="6.0.0" />
</ItemGroup>

<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
<!-- Deprecated packages -->
<PackageReference Include="Arcus.EventGrid" Version="3.3.0" />
<!-- End of deprecated packages -->
<PackageReference Include="Azure.Messaging.EventGrid" Version="4.11.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="6.0.0" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -16,20 +16,15 @@
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>

<PropertyGroup>
<!-- Temporary disable preview package usage warning as we are building our preview Arcus .NET 8 package, will be removed once we have a new major Arcus package -->
<NoWarn>NU5104</NoWarn>
</PropertyGroup>

<ItemGroup>
<None Include="..\..\README.md" Pack="true" PackagePath="\" />
<None Include="..\..\LICENSE" Pack="true" PackagePath="\" />
<None Include="..\..\docs\static\img\icon.png" Pack="true" PackagePath="\"/>
</ItemGroup>

<ItemGroup>
<PackageReference Include="Arcus.Observability.Telemetry.Core" Version="[3.0.0-preview-1-net8.0,4.0.0)" />
<PackageReference Include="Arcus.Security.Core" Version="[2.0.0-preview-1-net8.0,3.0.0)" />
<PackageReference Include="Arcus.Observability.Telemetry.Core" Version="[3.0.0,4.0.0)" />
<PackageReference Include="Arcus.Security.Core" Version="[2.0.0,3.0.0)" />
<PackageReference Include="Guard.NET" Version="3.0.0" />
</ItemGroup>

Expand Down
11 changes: 3 additions & 8 deletions src/Arcus.EventGrid.Testing/Arcus.EventGrid.Testing.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,15 @@
<ItemGroup>
<None Include="..\..\README.md" Pack="true" PackagePath="\" />
<None Include="..\..\LICENSE" Pack="true" PackagePath="\" />
<None Include="..\..\docs\static\img\icon.png" Pack="true" PackagePath="\"/>
<None Include="..\..\docs\static\img\icon.png" Pack="true" PackagePath="\" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Guard.NET" Version="3.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="6.0.0" />
<PackageReference Include="Azure.Messaging.ServiceBus" Version="7.2.0" />
</ItemGroup>

<ItemGroup>
<!-- Deprecated packages -->
<PackageReference Include="Arcus.EventGrid" Version="3.3.0" />
<!-- End of deprecated packages -->
<PackageReference Include="Azure.Messaging.ServiceBus" Version="7.17.4" />
<PackageReference Include="Azure.Messaging.EventGrid" Version="4.11.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="Polly" Version="7.2.1" />
</ItemGroup>

Expand Down
Loading

0 comments on commit a8315a4

Please sign in to comment.