Skip to content

Commit

Permalink
Consume .NET daily builds
Browse files Browse the repository at this point in the history
Update to the latest daily build of .NET 9.
  • Loading branch information
martincostello committed Sep 11, 2024
1 parent adfda56 commit 9b30f98
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
<PackageVersion Include="GitHubActionsTestLogger" Version="2.4.1" />
<PackageVersion Include="MartinCostello.Logging.XUnit" Version="0.4.0" />
<PackageVersion Include="MartinCostello.Testing.AwsLambdaTestServer" Version="0.8.0" />
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Testing" Version="9.0.0-rc.1.24452.1" />
<PackageVersion Include="Microsoft.AspNetCore.OpenApi" Version="9.0.0-rc.1.24452.1" />
<PackageVersion Include="Microsoft.Extensions.Caching.Memory" Version="9.0.0-rc.1.24431.7" />
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Testing" Version="9.0.0-rc.2.24460.5" />
<PackageVersion Include="Microsoft.AspNetCore.OpenApi" Version="9.0.0-rc.2.24460.5" />
<PackageVersion Include="Microsoft.Extensions.Caching.Memory" Version="9.0.0-rc.2.24459.11" />
<PackageVersion Include="Microsoft.ICU.ICU4C.Runtime" Version="72.1.0.3" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
<PackageVersion Include="Microsoft.OpenApi" Version="1.6.21" />
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="dotnet9" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet9/nuget/v3/index.json" />
<add key="NuGet" value="https://api.nuget.org/v3/index.json" />
</packageSources>
<packageSourceMapping>
<packageSource key="dotnet9">
<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": "9.0.100-rc.1.24452.12",
"version": "9.0.100-rc.2.24461.4",
"allowPrerelease": false,
"rollForward": "latestMajor"
}
Expand Down
3 changes: 1 addition & 2 deletions src/AdventOfCode.Site/AdventOfCode.Site.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<AWSProjectType>Lambda</AWSProjectType>
<ContainerBaseImage>mcr.microsoft.com/dotnet/nightly/runtime-deps:9.0-preview-noble-chiseled-extra</ContainerBaseImage>
<ContainerFamily>noble-chiseled-extra</ContainerFamily>
<Description>Web app for solving Advent of Code.</Description>
<EnableConfigurationBindingGenerator>true</EnableConfigurationBindingGenerator>
Expand All @@ -14,8 +15,6 @@
<TargetFramework>net9.0</TargetFramework>
<TypeScriptCompileBlocked>true</TypeScriptCompileBlocked>
<TypeScriptToolsVersion>latest</TypeScriptToolsVersion>
<!-- HACK Workaround for https://github.com/dotnet/runtime/issues/106566 -->
<UseSystemZlib>false</UseSystemZlib>
</PropertyGroup>
<PropertyGroup Condition=" '$(PublishForAWSLambda)' == 'true' ">
<AssemblyName>bootstrap</AssemblyName>
Expand Down

0 comments on commit 9b30f98

Please sign in to comment.