Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 48 additions & 0 deletions .build_helper.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
function Test-BuildServer {
if ($env:GITHUB_ACTIONS) {
return 'github'
}

return $null
}

function Verbose($Message) {
switch (Test-BuildServer) {
'github' {
Write-Output "::debug::$Message"
}
default {
Write-Verbose $Message
}
}
}

function Section([System.ConsoleColor]$ForegroundColor, $Message) {
Write-Build $ForegroundColor "$Message $('-' * (80 - $Message.Length))"
}

function Info($Message) {
Write-Build Cyan $Message
}

function Warning($Message) {
switch (Test-BuildServer) {
'github' {
Write-Output "::warning::$Message"
}
default {
Write-Build Yellow $Message
}
}
}

function Err($Message) {
switch (Test-BuildServer) {
'github' {
Write-Output "::error::$Message"
}
default {
Write-Build Red $Message
}
}
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
82 changes: 82 additions & 0 deletions .buildartefacts/Testify.Assertions.deps.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v7.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v7.0": {
"Testify.Assertions/1.0.0": {
"dependencies": {
"Microsoft.VisualStudio.Validation": "17.6.11"
},
"runtime": {
"Testify.Assertions.dll": {}
}
},
"Microsoft.VisualStudio.Validation/17.6.11": {
"runtime": {
"lib/net6.0/Microsoft.VisualStudio.Validation.dll": {
"assemblyVersion": "17.6.0.0",
"fileVersion": "17.6.11.23530"
}
},
"resources": {
"lib/net6.0/cs/Microsoft.VisualStudio.Validation.resources.dll": {
"locale": "cs"
},
"lib/net6.0/de/Microsoft.VisualStudio.Validation.resources.dll": {
"locale": "de"
},
"lib/net6.0/es/Microsoft.VisualStudio.Validation.resources.dll": {
"locale": "es"
},
"lib/net6.0/fr/Microsoft.VisualStudio.Validation.resources.dll": {
"locale": "fr"
},
"lib/net6.0/it/Microsoft.VisualStudio.Validation.resources.dll": {
"locale": "it"
},
"lib/net6.0/ja/Microsoft.VisualStudio.Validation.resources.dll": {
"locale": "ja"
},
"lib/net6.0/ko/Microsoft.VisualStudio.Validation.resources.dll": {
"locale": "ko"
},
"lib/net6.0/pl/Microsoft.VisualStudio.Validation.resources.dll": {
"locale": "pl"
},
"lib/net6.0/pt-BR/Microsoft.VisualStudio.Validation.resources.dll": {
"locale": "pt-BR"
},
"lib/net6.0/ru/Microsoft.VisualStudio.Validation.resources.dll": {
"locale": "ru"
},
"lib/net6.0/tr/Microsoft.VisualStudio.Validation.resources.dll": {
"locale": "tr"
},
"lib/net6.0/zh-Hans/Microsoft.VisualStudio.Validation.resources.dll": {
"locale": "zh-Hans"
},
"lib/net6.0/zh-Hant/Microsoft.VisualStudio.Validation.resources.dll": {
"locale": "zh-Hant"
}
}
}
}
},
"libraries": {
"Testify.Assertions/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"Microsoft.VisualStudio.Validation/17.6.11": {
"type": "package",
"serviceable": true,
"sha512": "sha512-J+9L/iac6c8cwcgVSCMuoIYOlD1Jw4mbZ8XMe1IZVj8p8+3dJ46LnnkIkTRMjK7xs9UtU9MoUp1JGhWoN6fAEw==",
"path": "microsoft.visualstudio.validation/17.6.11",
"hashPath": "microsoft.visualstudio.validation.17.6.11.nupkg.sha512"
}
}
}
Binary file added .buildartefacts/Testify.Assertions.dll
Binary file not shown.
Loading