Update all the things
This commit is contained in:
parent
8b5185847d
commit
b56b633232
14 changed files with 205 additions and 62 deletions
|
@ -6,7 +6,7 @@ clone:
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: build and publish
|
- name: build and publish
|
||||||
image: mcr.microsoft.com/dotnet/core/sdk:3.1
|
image: mcr.microsoft.com/dotnet/sdk:7.0
|
||||||
environment:
|
environment:
|
||||||
NugetEndpoint:
|
NugetEndpoint:
|
||||||
from_secret: NugetEndpoint
|
from_secret: NugetEndpoint
|
||||||
|
|
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -52,4 +52,5 @@ output
|
||||||
.tmp
|
.tmp
|
||||||
*.ncrunchsolution
|
*.ncrunchsolution
|
||||||
_NCrunch_Website
|
_NCrunch_Website
|
||||||
*.DotSettings
|
*.DotSettings
|
||||||
|
.nuke/temp
|
1
.nuke
1
.nuke
|
@ -1 +0,0 @@
|
||||||
src/Robware.Lib.ApiClient.sln
|
|
122
.nuke/build.schema.json
Normal file
122
.nuke/build.schema.json
Normal file
|
@ -0,0 +1,122 @@
|
||||||
|
{
|
||||||
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
||||||
|
"title": "Build Schema",
|
||||||
|
"$ref": "#/definitions/build",
|
||||||
|
"definitions": {
|
||||||
|
"build": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"Configuration": {
|
||||||
|
"type": "string",
|
||||||
|
"description": "Configuration to build - Default is 'Debug' (local) or 'Release' (server)",
|
||||||
|
"enum": [
|
||||||
|
"Debug",
|
||||||
|
"Release"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"Continue": {
|
||||||
|
"type": "boolean",
|
||||||
|
"description": "Indicates to continue a previously failed build attempt"
|
||||||
|
},
|
||||||
|
"Help": {
|
||||||
|
"type": "boolean",
|
||||||
|
"description": "Shows the help text for this build assembly"
|
||||||
|
},
|
||||||
|
"Host": {
|
||||||
|
"type": "string",
|
||||||
|
"description": "Host for execution. Default is 'automatic'",
|
||||||
|
"enum": [
|
||||||
|
"AppVeyor",
|
||||||
|
"AzurePipelines",
|
||||||
|
"Bamboo",
|
||||||
|
"Bitbucket",
|
||||||
|
"Bitrise",
|
||||||
|
"GitHubActions",
|
||||||
|
"GitLab",
|
||||||
|
"Jenkins",
|
||||||
|
"Rider",
|
||||||
|
"SpaceAutomation",
|
||||||
|
"TeamCity",
|
||||||
|
"Terminal",
|
||||||
|
"TravisCI",
|
||||||
|
"VisualStudio",
|
||||||
|
"VSCode"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"NoLogo": {
|
||||||
|
"type": "boolean",
|
||||||
|
"description": "Disables displaying the NUKE logo"
|
||||||
|
},
|
||||||
|
"NugetApiKey": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"NugetEndpoint": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"Partition": {
|
||||||
|
"type": "string",
|
||||||
|
"description": "Partition to use on CI"
|
||||||
|
},
|
||||||
|
"Plan": {
|
||||||
|
"type": "boolean",
|
||||||
|
"description": "Shows the execution plan (HTML)"
|
||||||
|
},
|
||||||
|
"Profile": {
|
||||||
|
"type": "array",
|
||||||
|
"description": "Defines the profiles to load",
|
||||||
|
"items": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Root": {
|
||||||
|
"type": "string",
|
||||||
|
"description": "Root directory during build execution"
|
||||||
|
},
|
||||||
|
"Skip": {
|
||||||
|
"type": "array",
|
||||||
|
"description": "List of targets to be skipped. Empty list skips all dependencies",
|
||||||
|
"items": {
|
||||||
|
"type": "string",
|
||||||
|
"enum": [
|
||||||
|
"Clean",
|
||||||
|
"Compile",
|
||||||
|
"Package",
|
||||||
|
"Publish",
|
||||||
|
"Restore",
|
||||||
|
"Test"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Solution": {
|
||||||
|
"type": "string",
|
||||||
|
"description": "Path to a solution file that is automatically loaded"
|
||||||
|
},
|
||||||
|
"Target": {
|
||||||
|
"type": "array",
|
||||||
|
"description": "List of targets to be invoked. Default is '{default_target}'",
|
||||||
|
"items": {
|
||||||
|
"type": "string",
|
||||||
|
"enum": [
|
||||||
|
"Clean",
|
||||||
|
"Compile",
|
||||||
|
"Package",
|
||||||
|
"Publish",
|
||||||
|
"Restore",
|
||||||
|
"Test"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Verbosity": {
|
||||||
|
"type": "string",
|
||||||
|
"description": "Logging verbosity during build execution. Default is 'Normal'",
|
||||||
|
"enum": [
|
||||||
|
"Minimal",
|
||||||
|
"Normal",
|
||||||
|
"Quiet",
|
||||||
|
"Verbose"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
4
.nuke/parameters.json
Normal file
4
.nuke/parameters.json
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
{
|
||||||
|
"$schema": "./build.schema.json",
|
||||||
|
"Solution": "src/Robware.Lib.ApiClient.sln"
|
||||||
|
}
|
|
@ -1,6 +1,7 @@
|
||||||
:; set -eo pipefail
|
:; set -eo pipefail
|
||||||
:; ./build.sh "$@"
|
:; SCRIPT_DIR=$(cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd)
|
||||||
|
:; ${SCRIPT_DIR}/build.sh "$@"
|
||||||
:; exit $?
|
:; exit $?
|
||||||
|
|
||||||
@ECHO OFF
|
@ECHO OFF
|
||||||
powershell -ExecutionPolicy ByPass -NoProfile %0\..\build.ps1 %*
|
powershell -ExecutionPolicy ByPass -NoProfile -File "%~dp0build.ps1" %*
|
||||||
|
|
42
build.ps1
42
build.ps1
|
@ -14,7 +14,7 @@ $PSScriptRoot = Split-Path $MyInvocation.MyCommand.Path -Parent
|
||||||
###########################################################################
|
###########################################################################
|
||||||
|
|
||||||
$BuildProjectFile = "$PSScriptRoot\build\_build.csproj"
|
$BuildProjectFile = "$PSScriptRoot\build\_build.csproj"
|
||||||
$TempDirectory = "$PSScriptRoot\\.tmp"
|
$TempDirectory = "$PSScriptRoot\\.nuke\temp"
|
||||||
|
|
||||||
$DotNetGlobalFile = "$PSScriptRoot\\global.json"
|
$DotNetGlobalFile = "$PSScriptRoot\\global.json"
|
||||||
$DotNetInstallUrl = "https://dot.net/v1/dotnet-install.ps1"
|
$DotNetInstallUrl = "https://dot.net/v1/dotnet-install.ps1"
|
||||||
|
@ -22,6 +22,7 @@ $DotNetChannel = "Current"
|
||||||
|
|
||||||
$env:DOTNET_SKIP_FIRST_TIME_EXPERIENCE = 1
|
$env:DOTNET_SKIP_FIRST_TIME_EXPERIENCE = 1
|
||||||
$env:DOTNET_CLI_TELEMETRY_OPTOUT = 1
|
$env:DOTNET_CLI_TELEMETRY_OPTOUT = 1
|
||||||
|
$env:DOTNET_MULTILEVEL_LOOKUP = 0
|
||||||
|
|
||||||
###########################################################################
|
###########################################################################
|
||||||
# EXECUTION
|
# EXECUTION
|
||||||
|
@ -32,38 +33,37 @@ function ExecSafe([scriptblock] $cmd) {
|
||||||
if ($LASTEXITCODE) { exit $LASTEXITCODE }
|
if ($LASTEXITCODE) { exit $LASTEXITCODE }
|
||||||
}
|
}
|
||||||
|
|
||||||
# If global.json exists, load expected version
|
# If dotnet CLI is installed globally and it matches requested version, use for execution
|
||||||
if (Test-Path $DotNetGlobalFile) {
|
|
||||||
$DotNetGlobal = $(Get-Content $DotNetGlobalFile | Out-String | ConvertFrom-Json)
|
|
||||||
if ($DotNetGlobal.PSObject.Properties["sdk"] -and $DotNetGlobal.sdk.PSObject.Properties["version"]) {
|
|
||||||
$DotNetVersion = $DotNetGlobal.sdk.version
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
# If dotnet is installed locally, and expected version is not set or installation matches the expected version
|
|
||||||
if ($null -ne (Get-Command "dotnet" -ErrorAction SilentlyContinue) -and `
|
if ($null -ne (Get-Command "dotnet" -ErrorAction SilentlyContinue) -and `
|
||||||
(!(Test-Path variable:DotNetVersion) -or $(& dotnet --version) -eq $DotNetVersion)) {
|
$(dotnet --version) -and $LASTEXITCODE -eq 0) {
|
||||||
$env:DOTNET_EXE = (Get-Command "dotnet").Path
|
$env:DOTNET_EXE = (Get-Command "dotnet").Path
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
$DotNetDirectory = "$TempDirectory\dotnet-win"
|
|
||||||
$env:DOTNET_EXE = "$DotNetDirectory\dotnet.exe"
|
|
||||||
|
|
||||||
# Download install script
|
# Download install script
|
||||||
$DotNetInstallFile = "$TempDirectory\dotnet-install.ps1"
|
$DotNetInstallFile = "$TempDirectory\dotnet-install.ps1"
|
||||||
New-Item -ItemType Directory -Path $TempDirectory -Force | Out-Null
|
New-Item -ItemType Directory -Path $TempDirectory -Force | Out-Null
|
||||||
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
|
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
|
||||||
(New-Object System.Net.WebClient).DownloadFile($DotNetInstallUrl, $DotNetInstallFile)
|
(New-Object System.Net.WebClient).DownloadFile($DotNetInstallUrl, $DotNetInstallFile)
|
||||||
|
|
||||||
# Install by channel or version
|
# If global.json exists, load expected version
|
||||||
if (!(Test-Path variable:DotNetVersion)) {
|
if (Test-Path $DotNetGlobalFile) {
|
||||||
ExecSafe { & $DotNetInstallFile -InstallDir $DotNetDirectory -Channel $DotNetChannel -NoPath }
|
$DotNetGlobal = $(Get-Content $DotNetGlobalFile | Out-String | ConvertFrom-Json)
|
||||||
} else {
|
if ($DotNetGlobal.PSObject.Properties["sdk"] -and $DotNetGlobal.sdk.PSObject.Properties["version"]) {
|
||||||
ExecSafe { & $DotNetInstallFile -InstallDir $DotNetDirectory -Version $DotNetVersion -NoPath }
|
$DotNetVersion = $DotNetGlobal.sdk.version
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# Install by channel or version
|
||||||
|
$DotNetDirectory = "$TempDirectory\dotnet-win"
|
||||||
|
if (!(Test-Path variable:DotNetVersion)) {
|
||||||
|
ExecSafe { & powershell $DotNetInstallFile -InstallDir $DotNetDirectory -Channel $DotNetChannel -NoPath }
|
||||||
|
} else {
|
||||||
|
ExecSafe { & powershell $DotNetInstallFile -InstallDir $DotNetDirectory -Version $DotNetVersion -NoPath }
|
||||||
|
}
|
||||||
|
$env:DOTNET_EXE = "$DotNetDirectory\dotnet.exe"
|
||||||
}
|
}
|
||||||
|
|
||||||
Write-Output "Microsoft (R) .NET Core SDK version $(& $env:DOTNET_EXE --version)"
|
Write-Output "Microsoft (R) .NET SDK version $(& $env:DOTNET_EXE --version)"
|
||||||
|
|
||||||
ExecSafe { & $env:DOTNET_EXE build $BuildProjectFile /nodeReuse:false -nologo -clp:NoSummary --verbosity quiet }
|
ExecSafe { & $env:DOTNET_EXE build $BuildProjectFile /nodeReuse:false /p:UseSharedCompilation=false -nologo -clp:NoSummary --verbosity quiet }
|
||||||
ExecSafe { & $env:DOTNET_EXE run --project $BuildProjectFile --no-build -- $BuildArguments }
|
ExecSafe { & $env:DOTNET_EXE run --project $BuildProjectFile --no-build -- $BuildArguments }
|
||||||
|
|
36
build.sh
36
build.sh
|
@ -1,6 +1,6 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
echo $(bash --version 2>&1 | head -n 1)
|
bash --version 2>&1 | head -n 1
|
||||||
|
|
||||||
set -eo pipefail
|
set -eo pipefail
|
||||||
SCRIPT_DIR=$(cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd)
|
SCRIPT_DIR=$(cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd)
|
||||||
|
@ -10,7 +10,7 @@ SCRIPT_DIR=$(cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd)
|
||||||
###########################################################################
|
###########################################################################
|
||||||
|
|
||||||
BUILD_PROJECT_FILE="$SCRIPT_DIR/build/_build.csproj"
|
BUILD_PROJECT_FILE="$SCRIPT_DIR/build/_build.csproj"
|
||||||
TEMP_DIRECTORY="$SCRIPT_DIR//.tmp"
|
TEMP_DIRECTORY="$SCRIPT_DIR//.nuke/temp"
|
||||||
|
|
||||||
DOTNET_GLOBAL_FILE="$SCRIPT_DIR//global.json"
|
DOTNET_GLOBAL_FILE="$SCRIPT_DIR//global.json"
|
||||||
DOTNET_INSTALL_URL="https://dot.net/v1/dotnet-install.sh"
|
DOTNET_INSTALL_URL="https://dot.net/v1/dotnet-install.sh"
|
||||||
|
@ -18,45 +18,45 @@ DOTNET_CHANNEL="Current"
|
||||||
|
|
||||||
export DOTNET_CLI_TELEMETRY_OPTOUT=1
|
export DOTNET_CLI_TELEMETRY_OPTOUT=1
|
||||||
export DOTNET_SKIP_FIRST_TIME_EXPERIENCE=1
|
export DOTNET_SKIP_FIRST_TIME_EXPERIENCE=1
|
||||||
|
export DOTNET_MULTILEVEL_LOOKUP=0
|
||||||
|
|
||||||
###########################################################################
|
###########################################################################
|
||||||
# EXECUTION
|
# EXECUTION
|
||||||
###########################################################################
|
###########################################################################
|
||||||
|
|
||||||
function FirstJsonValue {
|
function FirstJsonValue {
|
||||||
perl -nle 'print $1 if m{"'$1'": "([^"]+)",?}' <<< ${@:2}
|
perl -nle 'print $1 if m{"'"$1"'": "([^"]+)",?}' <<< "${@:2}"
|
||||||
}
|
}
|
||||||
|
|
||||||
# If global.json exists, load expected version
|
# If dotnet CLI is installed globally and it matches requested version, use for execution
|
||||||
if [[ -f "$DOTNET_GLOBAL_FILE" ]]; then
|
if [ -x "$(command -v dotnet)" ] && dotnet --version &>/dev/null; then
|
||||||
DOTNET_VERSION=$(FirstJsonValue "version" $(cat "$DOTNET_GLOBAL_FILE"))
|
|
||||||
if [[ "$DOTNET_VERSION" == "" ]]; then
|
|
||||||
unset DOTNET_VERSION
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
# If dotnet is installed locally, and expected version is not set or installation matches the expected version
|
|
||||||
if [[ -x "$(command -v dotnet)" && (-z ${DOTNET_VERSION+x} || $(dotnet --version 2>&1) == "$DOTNET_VERSION") ]]; then
|
|
||||||
export DOTNET_EXE="$(command -v dotnet)"
|
export DOTNET_EXE="$(command -v dotnet)"
|
||||||
else
|
else
|
||||||
DOTNET_DIRECTORY="$TEMP_DIRECTORY/dotnet-unix"
|
|
||||||
export DOTNET_EXE="$DOTNET_DIRECTORY/dotnet"
|
|
||||||
|
|
||||||
# Download install script
|
# Download install script
|
||||||
DOTNET_INSTALL_FILE="$TEMP_DIRECTORY/dotnet-install.sh"
|
DOTNET_INSTALL_FILE="$TEMP_DIRECTORY/dotnet-install.sh"
|
||||||
mkdir -p "$TEMP_DIRECTORY"
|
mkdir -p "$TEMP_DIRECTORY"
|
||||||
curl -Lsfo "$DOTNET_INSTALL_FILE" "$DOTNET_INSTALL_URL"
|
curl -Lsfo "$DOTNET_INSTALL_FILE" "$DOTNET_INSTALL_URL"
|
||||||
chmod +x "$DOTNET_INSTALL_FILE"
|
chmod +x "$DOTNET_INSTALL_FILE"
|
||||||
|
|
||||||
|
# If global.json exists, load expected version
|
||||||
|
if [[ -f "$DOTNET_GLOBAL_FILE" ]]; then
|
||||||
|
DOTNET_VERSION=$(FirstJsonValue "version" "$(cat "$DOTNET_GLOBAL_FILE")")
|
||||||
|
if [[ "$DOTNET_VERSION" == "" ]]; then
|
||||||
|
unset DOTNET_VERSION
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
# Install by channel or version
|
# Install by channel or version
|
||||||
|
DOTNET_DIRECTORY="$TEMP_DIRECTORY/dotnet-unix"
|
||||||
if [[ -z ${DOTNET_VERSION+x} ]]; then
|
if [[ -z ${DOTNET_VERSION+x} ]]; then
|
||||||
"$DOTNET_INSTALL_FILE" --install-dir "$DOTNET_DIRECTORY" --channel "$DOTNET_CHANNEL" --no-path
|
"$DOTNET_INSTALL_FILE" --install-dir "$DOTNET_DIRECTORY" --channel "$DOTNET_CHANNEL" --no-path
|
||||||
else
|
else
|
||||||
"$DOTNET_INSTALL_FILE" --install-dir "$DOTNET_DIRECTORY" --version "$DOTNET_VERSION" --no-path
|
"$DOTNET_INSTALL_FILE" --install-dir "$DOTNET_DIRECTORY" --version "$DOTNET_VERSION" --no-path
|
||||||
fi
|
fi
|
||||||
|
export DOTNET_EXE="$DOTNET_DIRECTORY/dotnet"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "Microsoft (R) .NET Core SDK version $("$DOTNET_EXE" --version)"
|
echo "Microsoft (R) .NET SDK version $("$DOTNET_EXE" --version)"
|
||||||
|
|
||||||
"$DOTNET_EXE" build "$BUILD_PROJECT_FILE" /nodeReuse:false -nologo -clp:NoSummary --verbosity quiet
|
"$DOTNET_EXE" build "$BUILD_PROJECT_FILE" /nodeReuse:false /p:UseSharedCompilation=false -nologo -clp:NoSummary --verbosity quiet
|
||||||
"$DOTNET_EXE" run --project "$BUILD_PROJECT_FILE" --no-build -- "$@"
|
"$DOTNET_EXE" run --project "$BUILD_PROJECT_FILE" --no-build -- "$@"
|
||||||
|
|
|
@ -9,7 +9,6 @@ using static Nuke.Common.IO.FileSystemTasks;
|
||||||
using static Nuke.Common.IO.PathConstruction;
|
using static Nuke.Common.IO.PathConstruction;
|
||||||
using static Nuke.Common.Tools.DotNet.DotNetTasks;
|
using static Nuke.Common.Tools.DotNet.DotNetTasks;
|
||||||
|
|
||||||
[CheckBuildProjectConfigurations]
|
|
||||||
[UnsetVisualStudioEnvironmentVariables]
|
[UnsetVisualStudioEnvironmentVariables]
|
||||||
class Build : NukeBuild {
|
class Build : NukeBuild {
|
||||||
|
|
||||||
|
@ -60,7 +59,7 @@ class Build : NukeBuild {
|
||||||
.DependsOn(Test)
|
.DependsOn(Test)
|
||||||
.Executes(() => {
|
.Executes(() => {
|
||||||
DotNetPack(s => s
|
DotNetPack(s => s
|
||||||
.SetProject(Solution)
|
.SetProject(Solution.Projects.SingleOrError(project => project.Name == "Robware.Lib.ApiClient", "ERROR FINDING API CLIENT PROJECT"))
|
||||||
.SetIncludeSymbols(true)
|
.SetIncludeSymbols(true)
|
||||||
.SetSymbolPackageFormat(DotNetSymbolPackageFormat.snupkg)
|
.SetSymbolPackageFormat(DotNetSymbolPackageFormat.snupkg)
|
||||||
.SetOutputDirectory(OutputDirectory));
|
.SetOutputDirectory(OutputDirectory));
|
||||||
|
|
16
build/Configuration.cs
Normal file
16
build/Configuration.cs
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
using System;
|
||||||
|
using System.ComponentModel;
|
||||||
|
using System.Linq;
|
||||||
|
using Nuke.Common.Tooling;
|
||||||
|
|
||||||
|
[TypeConverter(typeof(TypeConverter<Configuration>))]
|
||||||
|
public class Configuration : Enumeration
|
||||||
|
{
|
||||||
|
public static Configuration Debug = new Configuration { Value = nameof(Debug) };
|
||||||
|
public static Configuration Release = new Configuration { Value = nameof(Release) };
|
||||||
|
|
||||||
|
public static implicit operator string(Configuration configuration)
|
||||||
|
{
|
||||||
|
return configuration.Value;
|
||||||
|
}
|
||||||
|
}
|
|
@ -2,15 +2,16 @@
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFramework>netcoreapp3.0</TargetFramework>
|
<TargetFramework>net7.0</TargetFramework>
|
||||||
<RootNamespace></RootNamespace>
|
<RootNamespace></RootNamespace>
|
||||||
<NoWarn>CS0649;CS0169</NoWarn>
|
<NoWarn>CS0649;CS0169</NoWarn>
|
||||||
<NukeRootDirectory>..</NukeRootDirectory>
|
<NukeRootDirectory>..</NukeRootDirectory>
|
||||||
<NukeScriptDirectory>..</NukeScriptDirectory>
|
<NukeScriptDirectory>..</NukeScriptDirectory>
|
||||||
|
<NukeTelemetryVersion>1</NukeTelemetryVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Nuke.Common" Version="0.24.11" />
|
<PackageReference Include="Nuke.Common" Version="6.3.0" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
@ -60,7 +60,7 @@ namespace Robware.Lib.ApiClient.Tests {
|
||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
[Fact]
|
||||||
public void Get_WithUrlThatReturnsError_ThrowsException() {
|
public async void Get_WithUrlThatReturnsError_ThrowsException() {
|
||||||
var httpClient = new HttpClientBuilder()
|
var httpClient = new HttpClientBuilder()
|
||||||
.WithMethod(HttpMethod.Get)
|
.WithMethod(HttpMethod.Get)
|
||||||
.WithUrl("/test")
|
.WithUrl("/test")
|
||||||
|
@ -72,7 +72,7 @@ namespace Robware.Lib.ApiClient.Tests {
|
||||||
|
|
||||||
var client = new TestApiClient(httpClient, cache);
|
var client = new TestApiClient(httpClient, cache);
|
||||||
|
|
||||||
client.Invoking(apiClient => apiClient.Get<TestObject>("404")).Should().Throw<ApiCallException>()
|
await client.Invoking(apiClient => apiClient.Get<TestObject>("404")).Should().ThrowAsync<ApiCallException>()
|
||||||
.WithMessage("Error calling API http://example.com/404: 404, Not Found");
|
.WithMessage("Error calling API http://example.com/404: 404, Not Found");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,19 +1,19 @@
|
||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>netcoreapp3.1</TargetFramework>
|
<TargetFramework>net7.0</TargetFramework>
|
||||||
|
|
||||||
<IsPackable>false</IsPackable>
|
<IsPackable>false</IsPackable>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="fluentassertions" Version="5.10.0" />
|
<PackageReference Include="fluentassertions" Version="6.10.0" />
|
||||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.5.0" />
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.1" />
|
||||||
<PackageReference Include="nsubstitute" Version="4.2.1" />
|
<PackageReference Include="nsubstitute" Version="5.0.0" />
|
||||||
<PackageReference Include="RichardSzalay.MockHttp" Version="6.0.0" />
|
<PackageReference Include="RichardSzalay.MockHttp" Version="6.0.0" />
|
||||||
<PackageReference Include="xunit" Version="2.4.0" />
|
<PackageReference Include="xunit" Version="2.4.2" />
|
||||||
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.0" />
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5" />
|
||||||
<PackageReference Include="coverlet.collector" Version="1.2.0" />
|
<PackageReference Include="coverlet.collector" Version="3.2.0" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
|
@ -1,17 +1,17 @@
|
||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>netcoreapp3.1</TargetFramework>
|
<TargetFramework>net7.0</TargetFramework>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<Version>1.2.0</Version>
|
<Version>1.3.0</Version>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="3.1.5" />
|
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="7.0.0" />
|
||||||
<PackageReference Include="Microsoft.Extensions.Primitives" Version="3.1.5" />
|
<PackageReference Include="Microsoft.Extensions.Primitives" Version="7.0.0" />
|
||||||
<PackageReference Include="newtonsoft.json" Version="12.0.3" />
|
<PackageReference Include="newtonsoft.json" Version="13.0.2" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue