Skip to content

Commit 850c722

Browse files
committed
Use utf8-string-encoding feature in fortunes minimal apis
1 parent e2cf544 commit 850c722

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed
Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22

33
<PropertyGroup>
4-
<TargetFramework>net7.0</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
55
<Nullable>enable</Nullable>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<LangVersion>latest</LangVersion>
88
<UserSecretsId>38063504-d08c-495a-89c9-daaad2f60f31</UserSecretsId>
9+
<RestoreAdditionalProjectSources>
10+
https://dev.azure.com/dnceng/public/_artifacts/feed/general-testing/NuGet/Microsoft.Net.Compilers.Toolset/overview/4.13.0-1.24555.2
11+
</RestoreAdditionalProjectSources>
12+
<Features>$(Features);utf8-string-encoding</Features>
913
</PropertyGroup>
1014

1115
<ItemGroup>
@@ -15,6 +19,6 @@
1519
</ItemGroup>
1620

1721
<ItemGroup Condition="$([MSBuild]::VersionGreaterThanOrEquals($(TargetFrameworkVersion), '9.0'))">
18-
<PackageReference Include="Npgsql" Version="$(NpgsqlVersion90)" />
22+
<PackageReference Update="Npgsql" Version="$(NpgsqlVersion90)" />
1923
</ItemGroup>
2024
</Project>

0 commit comments

Comments
 (0)