Skip to content
This repository was archived by the owner on Feb 4, 2025. It is now read-only.

Commit 1f9e8a1

Browse files
committed
change build runtime to .NET Core SDK 2.2.106
1 parent a8e8871 commit 1f9e8a1

7 files changed

Lines changed: 28 additions & 14 deletions

File tree

SRLApiClient.sln

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
1010
.editorconfig = .editorconfig
1111
.gitattributes = .gitattributes
1212
.gitignore = .gitignore
13-
.travis.yml = .travis.yml
14-
appveyor.yml = appveyor.yml
13+
azure-pipelines.yml = azure-pipelines.yml
14+
global.json = global.json
1515
LICENSE = LICENSE
1616
Readme.md = Readme.md
1717
EndProjectSection

SRLApiClient/SRLApiClient.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFramework>netstandard2.0</TargetFramework>
55
<AssemblyVersion>1.0.0.0</AssemblyVersion>
66
<FileVersion>1.0.0.0</FileVersion>
7-
<Version>1.0.0-rc2</Version>
7+
<Version>1.0.0-rc3</Version>
88
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
99
<IncludeSymbols>true</IncludeSymbols>
1010
<Authors>Matteias Collet (BitPatty) &lt;matteias.collet@bluewin.ch&gt;</Authors>
@@ -43,6 +43,7 @@
4343
</ItemGroup>
4444

4545
<Target Name="PreBuild" BeforeTargets="PreBuildEvent">
46+
<Exec Command="dotnet --version" />
4647
<Exec Condition="'$(OS)' == 'Windows_NT' And '$(Configuration)|$(Platform)'=='Release|AnyCPU'" Command="echo &quot;Removing docs folder&quot;&#xD;&#xA;RD /S /Q &quot;../docs&quot;&#xD;&#xA;echo &quot;Docs folder removed&quot;" />
4748
<Exec Condition="'$(OS)' == 'Unix'" Command="echo &quot;Skipping docs generation!&quot;" />
4849
<Exec Condition="'$(OS)' == 'OSX'" Command="echo &quot;Skipping docs generation!&quot;" />

SRLApiClient/docfx/index.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@ _none_
2929

3030
#### v1.0.0-rc2
3131

32+
- Change build runtime to .NET Core SDK 2.2.106
33+
34+
#### v1.0.0-rc2
35+
3236
- Fix Timeout not updating when changed
3337

3438
#### v1.0.0-rc1

azure-pipelines.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ variables:
2020

2121
steps:
2222
- task: DotNetCoreInstaller@0
23-
displayName: 'Install .NET Core 2.2.203'
23+
displayName: 'Install .NET Core 2.2.106'
2424
inputs:
25-
version: '2.2.203'
25+
version: '2.2.106'
2626
- task: DotNetCoreCLI@2
2727
displayName: 'Build SRLApiClient'
2828
inputs:
@@ -45,7 +45,7 @@ steps:
4545
projects: 'Tests/Tests.csproj'
4646
arguments: '-c $(BuildConfiguration) --no-build'
4747
- task: CopyFiles@2
48-
displayName: 'Copying Artifacts'
48+
displayName: 'Copy Artifacts'
4949
inputs:
5050
Contents: '**/bin/Release/**'
5151
TargetFolder: '$(Build.ArtifactStagingDirectory)'

docs/index.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,10 @@ <h3 id="dependencies">Dependencies</h3>
7979
<h2 id="changelog">Changelog</h2>
8080
<h4 id="v100-rc2">v1.0.0-rc2</h4>
8181
<ul>
82+
<li>Change build runtime to .NET Core SDK 2.2.106</li>
83+
</ul>
84+
<h4 id="v100-rc2-1">v1.0.0-rc2</h4>
85+
<ul>
8286
<li>Fix Timeout not updating when changed</li>
8387
</ul>
8488
<h4 id="v100-rc1">v1.0.0-rc1</h4>

docs/manifest.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -560,7 +560,7 @@
560560
"output": {
561561
".html": {
562562
"relative_path": "index.html",
563-
"hash": "B0L4HbW/rTYA8KA2pxb/8w=="
563+
"hash": "qKAvoxOtw0PtqmLwWTtGgQ=="
564564
}
565565
},
566566
"is_incremental": false,
@@ -590,6 +590,13 @@
590590
"full_build_reason_code": "ForceRebuild"
591591
},
592592
"processors": {
593+
"ResourceDocumentProcessor": {
594+
"can_incremental": false,
595+
"details": "Processor ResourceDocumentProcessor cannot support incremental build because the processor doesn't implement ISupportIncrementalDocumentProcessor interface.",
596+
"incrementalPhase": "build",
597+
"total_file_count": 0,
598+
"skipped_file_count": 0
599+
},
593600
"TocDocumentProcessor": {
594601
"can_incremental": false,
595602
"details": "Processor TocDocumentProcessor cannot support incremental build because the processor doesn't implement ISupportIncrementalDocumentProcessor interface.",
@@ -608,13 +615,6 @@
608615
"incrementalPhase": "build",
609616
"total_file_count": 42,
610617
"skipped_file_count": 0
611-
},
612-
"ResourceDocumentProcessor": {
613-
"can_incremental": false,
614-
"details": "Processor ResourceDocumentProcessor cannot support incremental build because the processor doesn't implement ISupportIncrementalDocumentProcessor interface.",
615-
"incrementalPhase": "build",
616-
"total_file_count": 0,
617-
"skipped_file_count": 0
618618
}
619619
}
620620
},

global.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"sdk": {
3+
"version": "2.2.106"
4+
}
5+
}

0 commit comments

Comments
 (0)