File tree Expand file tree Collapse file tree 5 files changed +22
-6
lines changed
Expand file tree Collapse file tree 5 files changed +22
-6
lines changed Original file line number Diff line number Diff line change @@ -14,13 +14,12 @@ jobs:
1414 - name : Install dependencies
1515 run : |
1616 sudo apt-get update
17- sudo apt-get install -y libicu-dev
1817 - name : Check release validity
1918 run : sh .github/scripts/check-release.sh
2019 - name : Setup dotnet
2120 uses : actions/setup-dotnet@v4
2221 with :
23- dotnet-version : 3.1.101
22+ dotnet-version : 8.x
2423 - name : Pack
2524 run : dotnet pack src/Meilisearch/Meilisearch.csproj -c Release -o src/Meilisearch/bin/Release
2625 - name : Publish
Original file line number Diff line number Diff line change 2121 - name : Setup .NET Core
2222 uses : actions/setup-dotnet@v4
2323 with :
24- dotnet-version : " 6 .0.x"
24+ dotnet-version : " 8 .0.x"
2525 - name : Install dependencies
2626 run : dotnet restore
2727 - name : Build
3939 - name : Setup .NET Core
4040 uses : actions/setup-dotnet@v4
4141 with :
42- dotnet-version : " 6 .0.x"
42+ dotnet-version : " 8 .0.x"
4343 - name : Check with dotnet-format
4444 run : dotnet format --version
4545 - name : Check with dotnet-format
Original file line number Diff line number Diff line change 1818 <!-- You may want to remove the NoWarn node in case documentation will be mandatory in the future -->
1919 <NoWarn Condition =" '$(Configuration)' == 'Release'" >$(NoWarn);1591</NoWarn >
2020 </PropertyGroup >
21-
21+ <PropertyGroup >
22+ <InvariantGlobalization >true</InvariantGlobalization >
23+ </PropertyGroup >
2224 <ItemGroup >
2325 <PackageReference Include =" System.IdentityModel.Tokens.Jwt" Version =" 7.6.2" />
2426 <PackageReference Include =" System.Net.Http.Json" Version =" 6.0.2" />
Original file line number Diff line number Diff line change 1+ {
2+ "runtimeOptions" : {
3+ "configProperties" : {
4+ "System.Globalization.Invariant" : true
5+ }
6+ }
7+ }
Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk.Web" >
22
33 <PropertyGroup >
4- <TargetFramework >net6 .0</TargetFramework >
4+ <TargetFramework >net8 .0</TargetFramework >
55 <IsPackable >false</IsPackable >
66 </PropertyGroup >
77
8+ <PropertyGroup Condition =" '$(Configuration)|$(Platform)'=='Debug|AnyCPU'" >
9+ <NoWarn >1701;1702;CA1861</NoWarn >
10+ </PropertyGroup >
11+
12+ <PropertyGroup Condition =" '$(Configuration)|$(Platform)'=='Release|AnyCPU'" >
13+ <NoWarn >1701;1702;CA1861</NoWarn >
14+ </PropertyGroup >
15+
816 <ItemGroup >
917 <PackageReference Include =" FluentAssertions" Version =" 7.0.0" />
1018 <PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 17.12.0" />
You can’t perform that action at this time.
0 commit comments