File tree Expand file tree Collapse file tree 5 files changed +14
-5
lines changed
Expand file tree Collapse file tree 5 files changed +14
-5
lines changed Original file line number Diff line number Diff line change 88
99 <PropertyGroup >
1010 <LangVersion >12.0</LangVersion >
11- <TargetFrameworks >net6 .0;net7.0;net8 .0</TargetFrameworks >
11+ <TargetFrameworks >net8 .0;net9 .0</TargetFrameworks >
1212 <Platform >AnyCPU</Platform >
1313 <ImplicitUsings >enable</ImplicitUsings >
1414 <Nullable >enable</Nullable >
Original file line number Diff line number Diff line change 1717 <PrivateAssets >all</PrivateAssets >
1818 <IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
1919 </PackageReference >
20+ <PackageReference Include =" System.Text.RegularExpressions" Version =" 4.3.1" />
2021 </ItemGroup >
2122 <PropertyGroup >
2223 <DefaultItemExcludes >$(DefaultItemExcludes);TestResults\**;coverage.*.json</DefaultItemExcludes >
Original file line number Diff line number Diff line change 1- <Project Sdk =" Microsoft.NET.Sdk" >
1+ <Project Sdk =" Microsoft.NET.Sdk" >
22 <PropertyGroup >
33 <PackageId >Expressif</PackageId >
44 <RepositoryUrl >https://github.com/Seddryck/Expressif</RepositoryUrl >
1010 </PropertyGroup >
1111 <ItemGroup >
1212 <PackageReference Include =" Sprache" Version =" 2.3.1" />
13+ <PackageReference Include =" System.Text.RegularExpressions" Version =" 4.3.1" />
1314 </ItemGroup >
1415</Project >
Original file line number Diff line number Diff line change @@ -21,10 +21,17 @@ environment:
2121
2222init :
2323- cmd : git config --global core.autocrlf true
24- - cmd : setx IGNORE_NORMALISATION_GIT_HEAD_MOVE "1"
24+ - cmd : setx IGNORE_NORMALISATION_GIT_HEAD_MOVE 1
25+ - cmd : setx DOTNET_NO_WORKLOAD_UPDATE_NOTIFICATION 1
26+ - cmd : setx DOTNET_CLI_TELEMETRY_OPTOUT 1
27+ - cmd : setx DOTNET_NOLOGO 1
2528- cmd : RefreshEnv.cmd
2629- pwsh : Write-Host "Target branch is '$($env:APPVEYOR_REPO_BRANCH)'"
27- - cmd : dotnet --version
30+
31+ install :
32+ - ps : |
33+ Invoke-WebRequest -Uri 'https://dot.net/v1/dotnet-install.ps1' -UseBasicParsing -OutFile "$env:temp\dotnet-install.ps1"
34+ & $env:temp\dotnet-install.ps1 -Architecture x64 -Version '9.0.100' -InstallDir "$env:ProgramFiles\dotnet"
2835
2936before_build :
3037- cmd : gitversion /output buildserver /verbosity Minimal
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ If(Test-Path -LiteralPath $destinationPath\$destinationFile -PathType leaf) {
2020
2121$assemblyPath = " Expressif\bin"
2222Set-Location $assemblyPath
23- $dllfile = " net6 .0\Expressif.dll"
23+ $dllfile = " net8 .0\Expressif.dll"
2424If ((-not (Test-Path - Path " Release\$dllfile " )) -or (" Release\$dllfile " .CreationTime -lt " Debug\$dllfile " .CreationTime)) {
2525 $directory = " Debug"
2626} else {
You can’t perform that action at this time.
0 commit comments