Skip to content

Commit

Permalink
Consume .NET daily builds
Browse files Browse the repository at this point in the history
Consume the latest daily builds for .NET 8.
  • Loading branch information
martincostello committed Sep 27, 2023
1 parent 3d3fe96 commit ca97996
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
10 changes: 5 additions & 5 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@
<PackageVersion Include="MartinCostello.Logging.XUnit" Version="0.3.0" />
<PackageVersion Include="MartinCostello.Testing.AwsLambdaTestServer" Version="0.7.1" />
<PackageVersion Include="Microsoft.ApplicationInsights" Version="2.21.0" />
<PackageVersion Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0-rc.1.23419.4" />
<PackageVersion Include="Microsoft.Extensions.Http" Version="8.0.0-rc.1.23419.4" />
<PackageVersion Include="Microsoft.Extensions.Http.Polly" Version="8.0.0-rc.1.23421.29" />
<PackageVersion Include="Microsoft.Extensions.Logging" Version="8.0.0-rc.1.23419.4" />
<PackageVersion Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0-rc.2.23472.10" />
<PackageVersion Include="Microsoft.Extensions.Http" Version="8.0.0-rc.2.23472.10" />
<PackageVersion Include="Microsoft.Extensions.Http.Polly" Version="8.0.0-rc.2.23472.9" />
<PackageVersion Include="Microsoft.Extensions.Logging" Version="8.0.0-rc.2.23472.10" />
<!--
HACK Workaround for https://github.com/aws/aws-lambda-dotnet/issues/920
-->
Expand All @@ -27,7 +27,7 @@
<PackageVersion Include="ReportGenerator" Version="5.1.25" />
<PackageVersion Include="Shouldly" Version="4.2.1" />
<PackageVersion Include="StyleCop.Analyzers" Version="1.2.0-beta.507" />
<PackageVersion Include="System.Text.Json" Version="8.0.0-rc.1.23419.4" />
<PackageVersion Include="System.Text.Json" Version="8.0.0-rc.2.23472.10" />
<PackageVersion Include="xRetry" Version="1.9.0" />
<PackageVersion Include="xunit" Version="2.5.1" />
<PackageVersion Include="xunit.runner.visualstudio" Version="2.5.1" />
Expand Down
4 changes: 4 additions & 0 deletions NuGet.config
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,13 @@
<configuration>
<packageSources>
<clear />
<add key="dotnet8" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet8/nuget/v3/index.json" />
<add key="NuGet" value="https://api.nuget.org/v3/index.json" />
</packageSources>
<packageSourceMapping>
<packageSource key="dotnet8">
<package pattern="*" />
</packageSource>
<packageSource key="NuGet">
<package pattern="*" />
</packageSource>
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "8.0.100-rc.1.23463.5",
"version": "8.0.100-rc.2.23472.8",
"allowPrerelease": false,
"rollForward": "latestMajor"
}
Expand Down

0 comments on commit ca97996

Please sign in to comment.