File tree Expand file tree Collapse file tree 5 files changed +21
-15
lines changed
src/Serilog.Sinks.BrowserConsole
test/Serilog.Sinks.BrowserConsole.Tests Expand file tree Collapse file tree 5 files changed +21
-15
lines changed Original file line number Diff line number Diff line change 1
1
version : ' {build}'
2
2
skip_tags : true
3
- image : Visual Studio 2019
4
- configuration : Release
3
+ image : Visual Studio 2022
5
4
test : off
5
+ install :
6
+ - ps : $RequiredDotnetVersion = $(Get-Content ./global.json | ConvertFrom-Json).sdk.version
7
+ - ps : $env:DOTNET_INSTALL_DIR = "$pwd\.dotnetsdk"
8
+ - ps : mkdir $env:DOTNET_INSTALL_DIR -Force | Out-Null
9
+ - ps : Invoke-WebRequest -Uri "https://dot.net/v1/dotnet-install.ps1" -OutFile "$($env:DOTNET_INSTALL_DIR)/dotnet-install.ps1"
10
+ - ps : ' & "$($env:DOTNET_INSTALL_DIR)/dotnet-install.ps1" -Version $RequiredDotnetVersion -InstallDir $env:DOTNET_INSTALL_DIR'
11
+ - ps : $env:Path = "$env:DOTNET_INSTALL_DIR;$env:Path"
6
12
build_script :
7
13
- ps : ./Build.ps1
8
14
artifacts :
9
15
- path : artifacts/Serilog.*.nupkg
10
16
deploy :
11
17
- provider : NuGet
12
18
api_key :
13
- secure : rbdBqxBpLt4MkB+mrDOYNDOd8aVZ1zMkysaVNAXNKnC41FYifzX3l9LM8DCrUWU5
19
+ secure : oemq1E4zMR+LKQyrR83ZLcugPpZtl5OMKjtpMy/mbPEwuFGS+Oe46427D9KoHYD8
14
20
skip_symbols : true
15
21
on :
16
22
branch : /^(main|dev)$/
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk.BlazorWebAssembly" >
2
2
3
3
<PropertyGroup >
4
- <TargetFramework >net5 .0</TargetFramework >
4
+ <TargetFramework >net7 .0</TargetFramework >
5
5
</PropertyGroup >
6
6
7
7
<ItemGroup >
8
- <PackageReference Include =" Microsoft.AspNetCore.Components.WebAssembly" Version =" 5 .0.0-rc.1.* " />
9
- <PackageReference Include =" Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version =" 5 .0.0-rc.1.* " />
10
- <PackageReference Include =" System.Net.Http.Json" Version =" 5 .0.0-rc.1.* " />
8
+ <PackageReference Include =" Microsoft.AspNetCore.Components.WebAssembly" Version =" 7 .0.0" />
9
+ <PackageReference Include =" Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version =" 7 .0.0" />
10
+ <PackageReference Include =" System.Net.Http.Json" Version =" 7 .0.0" />
11
11
</ItemGroup >
12
12
13
13
<ItemGroup >
Original file line number Diff line number Diff line change 1
1
{
2
2
"sdk" : {
3
- "version" : " 5 .0.202 " ,
4
- "rollForward" : " latestPatch "
3
+ "version" : " 7 .0.100 " ,
4
+ "rollForward" : " latestFeature "
5
5
}
6
6
}
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
3
<PropertyGroup >
4
- <TargetFramework >net5 .0</TargetFramework >
5
- <VersionPrefix >1 .0.1 </VersionPrefix >
4
+ <TargetFramework >net7 .0</TargetFramework >
5
+ <VersionPrefix >2 .0.0 </VersionPrefix >
6
6
<RootNamespace >Serilog</RootNamespace >
7
7
<Description >Simple .NET logging with fully-structured events</Description >
8
8
<Authors >Serilog Contributors</Authors >
19
19
</PropertyGroup >
20
20
21
21
<ItemGroup >
22
- <PackageReference Include =" Microsoft.AspNetCore.Components.WebAssembly" Version =" 5 .0.0" />
22
+ <PackageReference Include =" Microsoft.AspNetCore.Components.WebAssembly" Version =" 7 .0.0" />
23
23
<PackageReference Include =" Serilog" Version =" 2.10.0" />
24
24
</ItemGroup >
25
25
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
3
<PropertyGroup >
4
- <TargetFramework >net5 .0</TargetFramework >
4
+ <TargetFramework >net7 .0</TargetFramework >
5
5
6
6
<IsPackable >false</IsPackable >
7
7
</PropertyGroup >
8
8
9
9
<ItemGroup >
10
10
<PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 15.8.0" />
11
- <PackageReference Include =" xunit" Version =" 2.3.1 " />
12
- <PackageReference Include =" xunit.runner.visualstudio" Version =" 2.3.1 " />
11
+ <PackageReference Include =" xunit" Version =" 2.4.2 " />
12
+ <PackageReference Include =" xunit.runner.visualstudio" Version =" 2.4.5 " />
13
13
</ItemGroup >
14
14
15
15
<ItemGroup >
You can’t perform that action at this time.
0 commit comments