Add CI workflows for tag-based release publishing and per-commit DLL builds #1

Merged
Copilot merged 3 commits from copilot/add-action-for-tag-and-commit into master 2026-05-18 13:06:50 -04:00
54 changed files with 2670 additions and 0 deletions
Showing only changes of commit fb7d57b895 - Show all commits

33
.github/workflows/build-on-commit.yml vendored Normal file
View File

@@ -0,0 +1,33 @@
name: Build NfcAime.Dll on Commit
on:
push:
tags-ignore:
- '*'
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup NuGet
uses: NuGet/setup-nuget@v2
- name: Setup MSBuild
uses: microsoft/setup-msbuild@v2
- name: Restore NuGet packages
run: nuget restore .\\PN532-Aime-Reader.sln
- name: Build NfcAime.Dll (x64, no project references)
run: msbuild .\\src\\NfcAime.Dll\\NfcAime.Dll.csproj /p:Configuration=Release /p:Platform="Any CPU" /p:BuildProjectReferences=false
- name: Upload build artifact
uses: actions/upload-artifact@v4
copilot-pull-request-reviewer[bot] commented 2026-05-18 13:09:21 -04:00 (Migrated from github.com)
Review

Same issue as the release workflow: /p:Platform="Any CPU" likely won’t match the project’s Release|AnyCPU condition in NfcAime.Dll.csproj. This can lead to a non-Release configuration being effectively used and/or output landing somewhere other than the expected bin/Release path. Remove /p:Platform or change it to /p:Platform=AnyCPU.

Same issue as the release workflow: `/p:Platform="Any CPU"` likely won’t match the project’s `Release|AnyCPU` condition in `NfcAime.Dll.csproj`. This can lead to a non-Release configuration being effectively used and/or output landing somewhere other than the expected `bin/Release` path. Remove `/p:Platform` or change it to `/p:Platform=AnyCPU`.
with:
name: NfcAime.Dll-${{ github.sha }}
path: src/NfcAime.Dll/bin/Release/NfcAime.Dll.dll
if-no-files-found: error

67
.github/workflows/release-on-tag.yml vendored Normal file
View File

@@ -0,0 +1,67 @@
name: Build and Release NfcAime.Dll on Tag
on:
push:
tags:
- '*'
permissions:
contents: write
jobs:
build-and-release:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup NuGet
uses: NuGet/setup-nuget@v2
- name: Setup MSBuild
uses: microsoft/setup-msbuild@v2
- name: Restore NuGet packages
run: nuget restore .\\PN532-Aime-Reader.sln
- name: Build NfcAime.Dll (x64, no project references)
run: msbuild .\\src\\NfcAime.Dll\\NfcAime.Dll.csproj /p:Configuration=Release /p:Platform="Any CPU" /p:BuildProjectReferences=false
copilot-pull-request-reviewer[bot] commented 2026-05-18 13:09:20 -04:00 (Migrated from github.com)
Review

The MSBuild invocation passes /p:Platform="Any CPU", but NfcAime.Dll.csproj uses AnyCPU (no space) in its configuration conditions (e.g., Release|AnyCPU). With Platform="Any CPU", the intended Release property group may not apply (Optimize/DefineConstants/OutputPath), and the built DLL may not match the expected settings. Prefer removing /p:Platform entirely (letting the project default to AnyCPU) or set /p:Platform=AnyCPU.

This issue also appears on line 41 of the same file.

The MSBuild invocation passes `/p:Platform="Any CPU"`, but `NfcAime.Dll.csproj` uses `AnyCPU` (no space) in its configuration conditions (e.g., `Release|AnyCPU`). With `Platform="Any CPU"`, the intended Release property group may not apply (Optimize/DefineConstants/OutputPath), and the built DLL may not match the expected settings. Prefer removing `/p:Platform` entirely (letting the project default to AnyCPU) or set `/p:Platform=AnyCPU`. This issue also appears on line 41 of the same file.
- name: Generate commit notes since previous tag
shell: pwsh
run: |
$currentTag = "${{ github.ref_name }}"
$prevTag = git tag --sort=-creatordate | Where-Object { $_ -ne $currentTag } | Select-Object -First 1
if ($prevTag) {
$range = "$prevTag..$currentTag"
$commitTitle = "## Commits since $prevTag"
} else {
$range = $currentTag
$commitTitle = "## Commits in $currentTag"
}
$commits = git log $range --pretty=format:"- %s (%h)"
if (-not $commits) {
$commits = "- No commits found."
}
@"
## Build Artifact
- NfcAime.Dll.dll (x64, Release)
$commitTitle
$commits
"@ | Out-File -FilePath RELEASE_NOTES.md -Encoding utf8
- name: Create GitHub Release and upload DLL
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ github.ref_name }}
body_path: RELEASE_NOTES.md
files: |
src/NfcAime.Dll/bin/Release/NfcAime.Dll.dll
fail_on_unmatched_files: true

Binary file not shown.

View File

@@ -0,0 +1,341 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v9.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v9.0": {
"Nfcaime.Cli/1.0.0": {
"dependencies": {
"System.IO.Ports": "10.0.0"
},
"runtime": {
"Nfcaime.Cli.dll": {}
}
},
"runtime.android-arm.runtime.native.System.IO.Ports/10.0.0": {
"runtimeTargets": {
"runtimes/android-arm/native/libSystem.IO.Ports.Native.so": {
"rid": "android-arm",
"assetType": "native",
"fileVersion": "0.0.0.0"
}
}
},
"runtime.android-arm64.runtime.native.System.IO.Ports/10.0.0": {
"runtimeTargets": {
"runtimes/android-arm64/native/libSystem.IO.Ports.Native.so": {
"rid": "android-arm64",
"assetType": "native",
"fileVersion": "0.0.0.0"
}
}
},
"runtime.android-x64.runtime.native.System.IO.Ports/10.0.0": {
"runtimeTargets": {
"runtimes/android-x64/native/libSystem.IO.Ports.Native.so": {
"rid": "android-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
}
}
},
"runtime.android-x86.runtime.native.System.IO.Ports/10.0.0": {
"runtimeTargets": {
"runtimes/android-x86/native/libSystem.IO.Ports.Native.so": {
"rid": "android-x86",
"assetType": "native",
"fileVersion": "0.0.0.0"
}
}
},
"runtime.linux-arm.runtime.native.System.IO.Ports/10.0.0": {
"runtimeTargets": {
"runtimes/linux-arm/native/libSystem.IO.Ports.Native.so": {
"rid": "linux-arm",
"assetType": "native",
"fileVersion": "0.0.0.0"
}
}
},
"runtime.linux-arm64.runtime.native.System.IO.Ports/10.0.0": {
"runtimeTargets": {
"runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so": {
"rid": "linux-arm64",
"assetType": "native",
"fileVersion": "0.0.0.0"
}
}
},
"runtime.linux-bionic-arm64.runtime.native.System.IO.Ports/10.0.0": {
"runtimeTargets": {
"runtimes/linux-bionic-arm64/native/libSystem.IO.Ports.Native.so": {
"rid": "linux-bionic-arm64",
"assetType": "native",
"fileVersion": "0.0.0.0"
}
}
},
"runtime.linux-bionic-x64.runtime.native.System.IO.Ports/10.0.0": {
"runtimeTargets": {
"runtimes/linux-bionic-x64/native/libSystem.IO.Ports.Native.so": {
"rid": "linux-bionic-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
}
}
},
"runtime.linux-musl-arm.runtime.native.System.IO.Ports/10.0.0": {
"runtimeTargets": {
"runtimes/linux-musl-arm/native/libSystem.IO.Ports.Native.so": {
"rid": "linux-musl-arm",
"assetType": "native",
"fileVersion": "0.0.0.0"
}
}
},
"runtime.linux-musl-arm64.runtime.native.System.IO.Ports/10.0.0": {
"runtimeTargets": {
"runtimes/linux-musl-arm64/native/libSystem.IO.Ports.Native.so": {
"rid": "linux-musl-arm64",
"assetType": "native",
"fileVersion": "0.0.0.0"
}
}
},
"runtime.linux-musl-x64.runtime.native.System.IO.Ports/10.0.0": {
"runtimeTargets": {
"runtimes/linux-musl-x64/native/libSystem.IO.Ports.Native.so": {
"rid": "linux-musl-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
}
}
},
"runtime.linux-x64.runtime.native.System.IO.Ports/10.0.0": {
"runtimeTargets": {
"runtimes/linux-x64/native/libSystem.IO.Ports.Native.so": {
"rid": "linux-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
}
}
},
"runtime.maccatalyst-arm64.runtime.native.System.IO.Ports/10.0.0": {
"runtimeTargets": {
"runtimes/maccatalyst-arm64/native/libSystem.IO.Ports.Native.dylib": {
"rid": "maccatalyst-arm64",
"assetType": "native",
"fileVersion": "0.0.0.0"
}
}
},
"runtime.maccatalyst-x64.runtime.native.System.IO.Ports/10.0.0": {
"runtimeTargets": {
"runtimes/maccatalyst-x64/native/libSystem.IO.Ports.Native.dylib": {
"rid": "maccatalyst-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
}
}
},
"runtime.native.System.IO.Ports/10.0.0": {
"dependencies": {
"runtime.android-arm.runtime.native.System.IO.Ports": "10.0.0",
"runtime.android-arm64.runtime.native.System.IO.Ports": "10.0.0",
"runtime.android-x64.runtime.native.System.IO.Ports": "10.0.0",
"runtime.android-x86.runtime.native.System.IO.Ports": "10.0.0",
"runtime.linux-arm.runtime.native.System.IO.Ports": "10.0.0",
"runtime.linux-arm64.runtime.native.System.IO.Ports": "10.0.0",
"runtime.linux-bionic-arm64.runtime.native.System.IO.Ports": "10.0.0",
"runtime.linux-bionic-x64.runtime.native.System.IO.Ports": "10.0.0",
"runtime.linux-musl-arm.runtime.native.System.IO.Ports": "10.0.0",
"runtime.linux-musl-arm64.runtime.native.System.IO.Ports": "10.0.0",
"runtime.linux-musl-x64.runtime.native.System.IO.Ports": "10.0.0",
"runtime.linux-x64.runtime.native.System.IO.Ports": "10.0.0",
"runtime.maccatalyst-arm64.runtime.native.System.IO.Ports": "10.0.0",
"runtime.maccatalyst-x64.runtime.native.System.IO.Ports": "10.0.0",
"runtime.osx-arm64.runtime.native.System.IO.Ports": "10.0.0",
"runtime.osx-x64.runtime.native.System.IO.Ports": "10.0.0"
}
},
"runtime.osx-arm64.runtime.native.System.IO.Ports/10.0.0": {
"runtimeTargets": {
"runtimes/osx-arm64/native/libSystem.IO.Ports.Native.dylib": {
"rid": "osx-arm64",
"assetType": "native",
"fileVersion": "0.0.0.0"
}
}
},
"runtime.osx-x64.runtime.native.System.IO.Ports/10.0.0": {
"runtimeTargets": {
"runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib": {
"rid": "osx-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
}
}
},
"System.IO.Ports/10.0.0": {
"dependencies": {
"runtime.native.System.IO.Ports": "10.0.0"
},
"runtime": {
"lib/net9.0/System.IO.Ports.dll": {
"assemblyVersion": "10.0.0.0",
"fileVersion": "10.0.25.52411"
}
},
"runtimeTargets": {
"runtimes/unix/lib/net9.0/System.IO.Ports.dll": {
"rid": "unix",
"assetType": "runtime",
"assemblyVersion": "10.0.0.0",
"fileVersion": "10.0.25.52411"
},
"runtimes/win/lib/net9.0/System.IO.Ports.dll": {
"rid": "win",
"assetType": "runtime",
"assemblyVersion": "10.0.0.0",
"fileVersion": "10.0.25.52411"
}
}
}
}
},
"libraries": {
"Nfcaime.Cli/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"runtime.android-arm.runtime.native.System.IO.Ports/10.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ehgGD1p2lNdYs/4xC1pqB8Cmuqq/c7YWOu+6YRZNpwgebcPyjzVNU2yjgBxHce4ER28hNT4DTeODr35xIHv+cw==",
"path": "runtime.android-arm.runtime.native.system.io.ports/10.0.0",
"hashPath": "runtime.android-arm.runtime.native.system.io.ports.10.0.0.nupkg.sha512"
},
"runtime.android-arm64.runtime.native.System.IO.Ports/10.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-+LI5JP5YDzXvuYP5XHnEFURgGVb0misSYb2vYPcrTq7xH8EF8wp8N3fAU3IGJ2eeJ1KzvtVmsuQok+ZTrmooww==",
"path": "runtime.android-arm64.runtime.native.system.io.ports/10.0.0",
"hashPath": "runtime.android-arm64.runtime.native.system.io.ports.10.0.0.nupkg.sha512"
},
"runtime.android-x64.runtime.native.System.IO.Ports/10.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-7wsbMw7Qaw5e2CittVwAO3Zub8ZNMG5fJrr3/8fVfMuyR1QaAYe0cbqmltTpstbiSK8G8yQDWCj3rJnre6ffXw==",
"path": "runtime.android-x64.runtime.native.system.io.ports/10.0.0",
"hashPath": "runtime.android-x64.runtime.native.system.io.ports.10.0.0.nupkg.sha512"
},
"runtime.android-x86.runtime.native.System.IO.Ports/10.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ZVKPUs3xVKzDQaVYnetP4BDuy1sdbtydaFZpiGIpmiczLfnVPqB0ddMShrJ1fQk1aM7tPcst/KzwUHjPqgijlQ==",
"path": "runtime.android-x86.runtime.native.system.io.ports/10.0.0",
"hashPath": "runtime.android-x86.runtime.native.system.io.ports.10.0.0.nupkg.sha512"
},
"runtime.linux-arm.runtime.native.System.IO.Ports/10.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-IA5+Djaq6B6QRfO1x7qS0LoB7Cw/46c18zs98cP0Se+gpaUciJxSsBAl9PAPbfEIK5cADW5ecNvtGvNtk7S1Mg==",
"path": "runtime.linux-arm.runtime.native.system.io.ports/10.0.0",
"hashPath": "runtime.linux-arm.runtime.native.system.io.ports.10.0.0.nupkg.sha512"
},
"runtime.linux-arm64.runtime.native.System.IO.Ports/10.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-G2udW9Ej7OYIPjgvcb+K6ooeU/84PqHnxMg8/vz1SHmCCLpEvCYS4W73MoL/Lqz28fJ1Pehy6cShp8DKKGbBPg==",
"path": "runtime.linux-arm64.runtime.native.system.io.ports/10.0.0",
"hashPath": "runtime.linux-arm64.runtime.native.system.io.ports.10.0.0.nupkg.sha512"
},
"runtime.linux-bionic-arm64.runtime.native.System.IO.Ports/10.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-yXj5BTjwpjnZhkyC1JZLbMdMh6tamF3qjac7DAHQa/qM8ICqjxK5F6duS3i0OnWPaZBZUKkpP1dyZ8FeL7GsKQ==",
"path": "runtime.linux-bionic-arm64.runtime.native.system.io.ports/10.0.0",
"hashPath": "runtime.linux-bionic-arm64.runtime.native.system.io.ports.10.0.0.nupkg.sha512"
},
"runtime.linux-bionic-x64.runtime.native.System.IO.Ports/10.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-nxCe45MUNmsCLhgIn2Catvf25ipmHzTBoXUfkjsl97o2RJXl5PSjx2jiYvJIz8O9Zx7mRGBBtgvLtpLDm1Ci3g==",
"path": "runtime.linux-bionic-x64.runtime.native.system.io.ports/10.0.0",
"hashPath": "runtime.linux-bionic-x64.runtime.native.system.io.ports.10.0.0.nupkg.sha512"
},
"runtime.linux-musl-arm.runtime.native.System.IO.Ports/10.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-PK0gGqX/FrLP+fv5c+56s36bqQu8umGt2h1L5ze1rqioYb1NErZg3D+zA4s45pHLDupJ7vmlvLo72DLFPAnzow==",
"path": "runtime.linux-musl-arm.runtime.native.system.io.ports/10.0.0",
"hashPath": "runtime.linux-musl-arm.runtime.native.system.io.ports.10.0.0.nupkg.sha512"
},
"runtime.linux-musl-arm64.runtime.native.System.IO.Ports/10.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-kGmMJHJIairC0znRxMY8l8dovr7mpqb1wTRT0k/H0pHUYMC0yWyBxPQ6Jhss/tevazLYJG+kfsNw8oouF2pyvQ==",
"path": "runtime.linux-musl-arm64.runtime.native.system.io.ports/10.0.0",
"hashPath": "runtime.linux-musl-arm64.runtime.native.system.io.ports.10.0.0.nupkg.sha512"
},
"runtime.linux-musl-x64.runtime.native.System.IO.Ports/10.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-dUvttlipSsyfqgmGkdzsBTSwDA92r7NIL860jIGlaZ31kY7vGGxa9EeR9Y//vj5JmIcRVMhoe69u2t1pITPHTQ==",
"path": "runtime.linux-musl-x64.runtime.native.system.io.ports/10.0.0",
"hashPath": "runtime.linux-musl-x64.runtime.native.system.io.ports.10.0.0.nupkg.sha512"
},
"runtime.linux-x64.runtime.native.System.IO.Ports/10.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-BYU08iO5Ey9oGMxSXCrsmEHkT51SifbIL8yBCD7e59P90tZzxpzm89j+guGsb24+qbiwOlCQmpi10dgWn6VmWg==",
"path": "runtime.linux-x64.runtime.native.system.io.ports/10.0.0",
"hashPath": "runtime.linux-x64.runtime.native.system.io.ports.10.0.0.nupkg.sha512"
},
"runtime.maccatalyst-arm64.runtime.native.System.IO.Ports/10.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-DGVYub3vzhIXntukgOH18NOs6O6Y0PivftW/DYJZQs4lrA/zIUWs7DFXdY4D+4dcJjKBweb5qp4uRIko/vtodQ==",
"path": "runtime.maccatalyst-arm64.runtime.native.system.io.ports/10.0.0",
"hashPath": "runtime.maccatalyst-arm64.runtime.native.system.io.ports.10.0.0.nupkg.sha512"
},
"runtime.maccatalyst-x64.runtime.native.System.IO.Ports/10.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-h+H9WlpBbG1b3ZcnjaRdV1avmz1mOWvkjGoXlYh+brPPT3XpP2KWtTOLAz/3JpQe49LwGq+rOX8GwbzQvUpdkA==",
"path": "runtime.maccatalyst-x64.runtime.native.system.io.ports/10.0.0",
"hashPath": "runtime.maccatalyst-x64.runtime.native.system.io.ports.10.0.0.nupkg.sha512"
},
"runtime.native.System.IO.Ports/10.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-xL+e2TzXMx4Ts/TVo/v6MbNtKPc3OASCN1cHqVXzWdT+fOH9m4BM12SSXkp5clP5Rj955Vh/4Lj1faD+FGwjiQ==",
"path": "runtime.native.system.io.ports/10.0.0",
"hashPath": "runtime.native.system.io.ports.10.0.0.nupkg.sha512"
},
"runtime.osx-arm64.runtime.native.System.IO.Ports/10.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-UrTKcNTBfHCvwmMJHJotiY8FVcQu1mk73b+AsLmVlu0S3Z27VvwWgd3fcw1CjkqX45BoVYMCE3JNhIExIKSrzQ==",
"path": "runtime.osx-arm64.runtime.native.system.io.ports/10.0.0",
"hashPath": "runtime.osx-arm64.runtime.native.system.io.ports.10.0.0.nupkg.sha512"
},
"runtime.osx-x64.runtime.native.System.IO.Ports/10.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-kggkJk7S8OcoOLa9OyrP2zQ/eStiKHOytWVK8lJuRckzcz52eUgDo66+d9n2KciukcNmeAbmSHEY6fh2n394Jg==",
"path": "runtime.osx-x64.runtime.native.system.io.ports/10.0.0",
"hashPath": "runtime.osx-x64.runtime.native.system.io.ports.10.0.0.nupkg.sha512"
},
"System.IO.Ports/10.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-UT9dTPqoEjG5AuPu2NA29hBlNyW2bGIVv/CoV2I2IjIRRnAzbXHVRdVZG5NKfuWTLmpQZfAaEAWV9MSn3VDrtg==",
"path": "system.io.ports/10.0.0",
"hashPath": "system.io.ports.10.0.0.nupkg.sha512"
}
}
}

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,13 @@
{
"runtimeOptions": {
"tfm": "net9.0",
"framework": {
"name": "Microsoft.NETCore.App",
"version": "9.0.0"
},
"configProperties": {
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
}
}
}

Binary file not shown.

View File

@@ -0,0 +1,73 @@
{
"format": 1,
"restore": {
"/home/runner/work/PN532-Aime-Reader/PN532-Aime-Reader/src/NfcAime.Cli/Nfcaime.Cli.csproj": {}
},
"projects": {
"/home/runner/work/PN532-Aime-Reader/PN532-Aime-Reader/src/NfcAime.Cli/Nfcaime.Cli.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "/home/runner/work/PN532-Aime-Reader/PN532-Aime-Reader/src/NfcAime.Cli/Nfcaime.Cli.csproj",
"projectName": "Nfcaime.Cli",
"projectPath": "/home/runner/work/PN532-Aime-Reader/PN532-Aime-Reader/src/NfcAime.Cli/Nfcaime.Cli.csproj",
"packagesPath": "/home/runner/.nuget/packages/",
"outputPath": "/home/runner/work/PN532-Aime-Reader/PN532-Aime-Reader/src/NfcAime.Cli/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
"/home/runner/.nuget/NuGet/NuGet.Config"
],
"originalTargetFrameworks": [
"net9.0"
],
"sources": {
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net9.0": {
"targetAlias": "net9.0",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
},
"restoreAuditProperties": {
"enableAudit": "true",
"auditLevel": "low",
"auditMode": "direct"
},
"SdkAnalysisLevel": "10.0.200"
},
"frameworks": {
"net9.0": {
"targetAlias": "net9.0",
"dependencies": {
"System.IO.Ports": {
"target": "Package",
"version": "[10.0.0, )"
}
},
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/10.0.201/PortableRuntimeIdentifierGraph.json"
}
}
}
}
}

View File

@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/home/runner/.nuget/packages/</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/runner/.nuget/packages/</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">7.0.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="/home/runner/.nuget/packages/" />
</ItemGroup>
</Project>

View File

@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />

View File

@@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v9.0", FrameworkDisplayName = ".NET 9.0")]

View File

@@ -0,0 +1,22 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("Nfcaime.Cli")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+c524204441af68014ed14e636cc2457fef112509")]
[assembly: System.Reflection.AssemblyProductAttribute("Nfcaime.Cli")]
[assembly: System.Reflection.AssemblyTitleAttribute("Nfcaime.Cli")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generated by the MSBuild WriteCodeFragment class.

View File

@@ -0,0 +1 @@
4ba7d754f6a5772735274bc07b6050db6127060bfe839ca2b6bdcc42718f9814

View File

@@ -0,0 +1,17 @@
is_global = true
build_property.TargetFramework = net9.0
build_property.TargetFrameworkIdentifier = .NETCoreApp
build_property.TargetFrameworkVersion = v9.0
build_property.TargetPlatformMinVersion =
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = Nfcaime.Cli
build_property.ProjectDir = /home/runner/work/PN532-Aime-Reader/PN532-Aime-Reader/src/NfcAime.Cli/
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =
build_property.EffectiveAnalysisLevelStyle = 9.0
build_property.EnableCodeStyleSeverity =

View File

@@ -0,0 +1,8 @@
// <auto-generated/>
global using System;
global using System.Collections.Generic;
global using System.IO;
global using System.Linq;
global using System.Net.Http;
global using System.Threading;
global using System.Threading.Tasks;

View File

@@ -0,0 +1 @@
95f4614007f7a31fb1a4d4ce33b669be15bd2847e75a5c07d50db258a60dff6e

View File

@@ -0,0 +1,36 @@
/home/runner/work/PN532-Aime-Reader/PN532-Aime-Reader/src/NfcAime.Cli/bin/Release/net9.0/Nfcaime.Cli
/home/runner/work/PN532-Aime-Reader/PN532-Aime-Reader/src/NfcAime.Cli/bin/Release/net9.0/Nfcaime.Cli.deps.json
/home/runner/work/PN532-Aime-Reader/PN532-Aime-Reader/src/NfcAime.Cli/bin/Release/net9.0/Nfcaime.Cli.runtimeconfig.json
/home/runner/work/PN532-Aime-Reader/PN532-Aime-Reader/src/NfcAime.Cli/bin/Release/net9.0/Nfcaime.Cli.dll
/home/runner/work/PN532-Aime-Reader/PN532-Aime-Reader/src/NfcAime.Cli/bin/Release/net9.0/Nfcaime.Cli.pdb
/home/runner/work/PN532-Aime-Reader/PN532-Aime-Reader/src/NfcAime.Cli/bin/Release/net9.0/System.IO.Ports.dll
/home/runner/work/PN532-Aime-Reader/PN532-Aime-Reader/src/NfcAime.Cli/bin/Release/net9.0/runtimes/android-arm/native/libSystem.IO.Ports.Native.so
/home/runner/work/PN532-Aime-Reader/PN532-Aime-Reader/src/NfcAime.Cli/bin/Release/net9.0/runtimes/android-arm64/native/libSystem.IO.Ports.Native.so
/home/runner/work/PN532-Aime-Reader/PN532-Aime-Reader/src/NfcAime.Cli/bin/Release/net9.0/runtimes/android-x64/native/libSystem.IO.Ports.Native.so
/home/runner/work/PN532-Aime-Reader/PN532-Aime-Reader/src/NfcAime.Cli/bin/Release/net9.0/runtimes/android-x86/native/libSystem.IO.Ports.Native.so
/home/runner/work/PN532-Aime-Reader/PN532-Aime-Reader/src/NfcAime.Cli/bin/Release/net9.0/runtimes/linux-arm/native/libSystem.IO.Ports.Native.so
/home/runner/work/PN532-Aime-Reader/PN532-Aime-Reader/src/NfcAime.Cli/bin/Release/net9.0/runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so
/home/runner/work/PN532-Aime-Reader/PN532-Aime-Reader/src/NfcAime.Cli/bin/Release/net9.0/runtimes/linux-bionic-arm64/native/libSystem.IO.Ports.Native.so
/home/runner/work/PN532-Aime-Reader/PN532-Aime-Reader/src/NfcAime.Cli/bin/Release/net9.0/runtimes/linux-bionic-x64/native/libSystem.IO.Ports.Native.so
/home/runner/work/PN532-Aime-Reader/PN532-Aime-Reader/src/NfcAime.Cli/bin/Release/net9.0/runtimes/linux-musl-arm/native/libSystem.IO.Ports.Native.so
/home/runner/work/PN532-Aime-Reader/PN532-Aime-Reader/src/NfcAime.Cli/bin/Release/net9.0/runtimes/linux-musl-arm64/native/libSystem.IO.Ports.Native.so
/home/runner/work/PN532-Aime-Reader/PN532-Aime-Reader/src/NfcAime.Cli/bin/Release/net9.0/runtimes/linux-musl-x64/native/libSystem.IO.Ports.Native.so
/home/runner/work/PN532-Aime-Reader/PN532-Aime-Reader/src/NfcAime.Cli/bin/Release/net9.0/runtimes/linux-x64/native/libSystem.IO.Ports.Native.so
/home/runner/work/PN532-Aime-Reader/PN532-Aime-Reader/src/NfcAime.Cli/bin/Release/net9.0/runtimes/maccatalyst-arm64/native/libSystem.IO.Ports.Native.dylib
/home/runner/work/PN532-Aime-Reader/PN532-Aime-Reader/src/NfcAime.Cli/bin/Release/net9.0/runtimes/maccatalyst-x64/native/libSystem.IO.Ports.Native.dylib
/home/runner/work/PN532-Aime-Reader/PN532-Aime-Reader/src/NfcAime.Cli/bin/Release/net9.0/runtimes/osx-arm64/native/libSystem.IO.Ports.Native.dylib
/home/runner/work/PN532-Aime-Reader/PN532-Aime-Reader/src/NfcAime.Cli/bin/Release/net9.0/runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib
/home/runner/work/PN532-Aime-Reader/PN532-Aime-Reader/src/NfcAime.Cli/bin/Release/net9.0/runtimes/unix/lib/net9.0/System.IO.Ports.dll
/home/runner/work/PN532-Aime-Reader/PN532-Aime-Reader/src/NfcAime.Cli/bin/Release/net9.0/runtimes/win/lib/net9.0/System.IO.Ports.dll
/home/runner/work/PN532-Aime-Reader/PN532-Aime-Reader/src/NfcAime.Cli/obj/Release/net9.0/Nfcaime.Cli.csproj.AssemblyReference.cache
/home/runner/work/PN532-Aime-Reader/PN532-Aime-Reader/src/NfcAime.Cli/obj/Release/net9.0/Nfcaime.Cli.GeneratedMSBuildEditorConfig.editorconfig
/home/runner/work/PN532-Aime-Reader/PN532-Aime-Reader/src/NfcAime.Cli/obj/Release/net9.0/Nfcaime.Cli.AssemblyInfoInputs.cache
/home/runner/work/PN532-Aime-Reader/PN532-Aime-Reader/src/NfcAime.Cli/obj/Release/net9.0/Nfcaime.Cli.AssemblyInfo.cs
/home/runner/work/PN532-Aime-Reader/PN532-Aime-Reader/src/NfcAime.Cli/obj/Release/net9.0/Nfcaime.Cli.csproj.CoreCompileInputs.cache
/home/runner/work/PN532-Aime-Reader/PN532-Aime-Reader/src/NfcAime.Cli/obj/Release/net9.0/Nfcaime.Cli.sourcelink.json
/home/runner/work/PN532-Aime-Reader/PN532-Aime-Reader/src/NfcAime.Cli/obj/Release/net9.0/Nfcaime..0EB131D5.Up2Date
/home/runner/work/PN532-Aime-Reader/PN532-Aime-Reader/src/NfcAime.Cli/obj/Release/net9.0/Nfcaime.Cli.dll
/home/runner/work/PN532-Aime-Reader/PN532-Aime-Reader/src/NfcAime.Cli/obj/Release/net9.0/refint/Nfcaime.Cli.dll
/home/runner/work/PN532-Aime-Reader/PN532-Aime-Reader/src/NfcAime.Cli/obj/Release/net9.0/Nfcaime.Cli.pdb
/home/runner/work/PN532-Aime-Reader/PN532-Aime-Reader/src/NfcAime.Cli/obj/Release/net9.0/Nfcaime.Cli.genruntimeconfig.cache
/home/runner/work/PN532-Aime-Reader/PN532-Aime-Reader/src/NfcAime.Cli/obj/Release/net9.0/ref/Nfcaime.Cli.dll

Binary file not shown.

View File

@@ -0,0 +1 @@
0a939f8b038e6961dd99cfc2abc65f40f1b46ba8b492c722a525e1647df12598

Binary file not shown.

View File

@@ -0,0 +1 @@
{"documents":{"/home/runner/work/PN532-Aime-Reader/PN532-Aime-Reader/*":"https://raw.githubusercontent.com/zhicheng233/PN532-Aime-Reader/c524204441af68014ed14e636cc2457fef112509/*"}}

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,27 @@
{
"version": 2,
"dgSpecHash": "Wuug/aHAjjM=",
"success": true,
"projectFilePath": "/home/runner/work/PN532-Aime-Reader/PN532-Aime-Reader/src/NfcAime.Cli/Nfcaime.Cli.csproj",
"expectedPackageFiles": [
"/home/runner/.nuget/packages/runtime.android-arm.runtime.native.system.io.ports/10.0.0/runtime.android-arm.runtime.native.system.io.ports.10.0.0.nupkg.sha512",
"/home/runner/.nuget/packages/runtime.android-arm64.runtime.native.system.io.ports/10.0.0/runtime.android-arm64.runtime.native.system.io.ports.10.0.0.nupkg.sha512",
"/home/runner/.nuget/packages/runtime.android-x64.runtime.native.system.io.ports/10.0.0/runtime.android-x64.runtime.native.system.io.ports.10.0.0.nupkg.sha512",
"/home/runner/.nuget/packages/runtime.android-x86.runtime.native.system.io.ports/10.0.0/runtime.android-x86.runtime.native.system.io.ports.10.0.0.nupkg.sha512",
"/home/runner/.nuget/packages/runtime.linux-arm.runtime.native.system.io.ports/10.0.0/runtime.linux-arm.runtime.native.system.io.ports.10.0.0.nupkg.sha512",
"/home/runner/.nuget/packages/runtime.linux-arm64.runtime.native.system.io.ports/10.0.0/runtime.linux-arm64.runtime.native.system.io.ports.10.0.0.nupkg.sha512",
"/home/runner/.nuget/packages/runtime.linux-bionic-arm64.runtime.native.system.io.ports/10.0.0/runtime.linux-bionic-arm64.runtime.native.system.io.ports.10.0.0.nupkg.sha512",
"/home/runner/.nuget/packages/runtime.linux-bionic-x64.runtime.native.system.io.ports/10.0.0/runtime.linux-bionic-x64.runtime.native.system.io.ports.10.0.0.nupkg.sha512",
"/home/runner/.nuget/packages/runtime.linux-musl-arm.runtime.native.system.io.ports/10.0.0/runtime.linux-musl-arm.runtime.native.system.io.ports.10.0.0.nupkg.sha512",
"/home/runner/.nuget/packages/runtime.linux-musl-arm64.runtime.native.system.io.ports/10.0.0/runtime.linux-musl-arm64.runtime.native.system.io.ports.10.0.0.nupkg.sha512",
"/home/runner/.nuget/packages/runtime.linux-musl-x64.runtime.native.system.io.ports/10.0.0/runtime.linux-musl-x64.runtime.native.system.io.ports.10.0.0.nupkg.sha512",
"/home/runner/.nuget/packages/runtime.linux-x64.runtime.native.system.io.ports/10.0.0/runtime.linux-x64.runtime.native.system.io.ports.10.0.0.nupkg.sha512",
"/home/runner/.nuget/packages/runtime.maccatalyst-arm64.runtime.native.system.io.ports/10.0.0/runtime.maccatalyst-arm64.runtime.native.system.io.ports.10.0.0.nupkg.sha512",
"/home/runner/.nuget/packages/runtime.maccatalyst-x64.runtime.native.system.io.ports/10.0.0/runtime.maccatalyst-x64.runtime.native.system.io.ports.10.0.0.nupkg.sha512",
"/home/runner/.nuget/packages/runtime.native.system.io.ports/10.0.0/runtime.native.system.io.ports.10.0.0.nupkg.sha512",
"/home/runner/.nuget/packages/runtime.osx-arm64.runtime.native.system.io.ports/10.0.0/runtime.osx-arm64.runtime.native.system.io.ports.10.0.0.nupkg.sha512",
"/home/runner/.nuget/packages/runtime.osx-x64.runtime.native.system.io.ports/10.0.0/runtime.osx-x64.runtime.native.system.io.ports.10.0.0.nupkg.sha512",
"/home/runner/.nuget/packages/system.io.ports/10.0.0/system.io.ports.10.0.0.nupkg.sha512"
],
"logs": []
}

View File

@@ -0,0 +1,50 @@
{
"format": 1,
"restore": {
"/home/runner/work/PN532-Aime-Reader/PN532-Aime-Reader/src/NfcAime.Dll/NfcAime.Dll.csproj": {}
},
"projects": {
"/home/runner/work/PN532-Aime-Reader/PN532-Aime-Reader/src/NfcAime.Dll/NfcAime.Dll.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "/home/runner/work/PN532-Aime-Reader/PN532-Aime-Reader/src/NfcAime.Dll/NfcAime.Dll.csproj",
"projectName": "NfcAime.Dll",
"projectPath": "/home/runner/work/PN532-Aime-Reader/PN532-Aime-Reader/src/NfcAime.Dll/NfcAime.Dll.csproj",
"packagesPath": "/home/runner/.nuget/packages/",
"outputPath": "/home/runner/work/PN532-Aime-Reader/PN532-Aime-Reader/src/NfcAime.Dll/obj/",
"projectStyle": "PackageReference",
"skipContentFileWrite": true,
"UsingMicrosoftNETSdk": false,
"configFilePaths": [
"/home/runner/.nuget/NuGet/NuGet.Config"
],
"originalTargetFrameworks": [
"net472"
],
"sources": {
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net472": {
"projectReferences": {}
}
},
"restoreAuditProperties": {
"enableAudit": "true",
"auditLevel": "low",
"auditMode": "direct"
}
},
"frameworks": {
"net472": {
"dependencies": {
"DllExport": {
"target": "Package",
"version": "[1.8.1, )"
}
}
}
}
}
}
}

View File

@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/home/runner/.nuget/packages/</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/runner/.nuget/packages/</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">7.0.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="/home/runner/.nuget/packages/" />
</ItemGroup>
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<PkgDllExport Condition=" '$(PkgDllExport)' == '' ">/home/runner/.nuget/packages/dllexport/1.8.1</PkgDllExport>
</PropertyGroup>
</Project>

View File

@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />

View File

@@ -0,0 +1,140 @@
{
"version": 3,
"targets": {
".NETFramework,Version=v4.7.2": {
"DllExport/1.8.1": {
"type": "package",
"compile": {
"lib/net20/_._": {}
},
"runtime": {
"lib/net20/_._": {}
}
}
}
},
"libraries": {
"DllExport/1.8.1": {
"sha512": "0Nph8HJTMeSOvZ//VuQMKJPRVi7RdJmHA/IcA+TiWTP0+HR6NB0t95Dnn6K7wWI41h1XXJnu+EATif2HIdR+uw==",
"type": "package",
"path": "dllexport/1.8.1",
"hasTools": true,
"files": [
".gitattributes",
".nupkg.metadata",
".pkg.install.txt",
".release.version",
".sha1",
".signature.p7s",
".version",
"3rd-party-NOTICES.txt",
"AUTHORS.txt",
"DllExport.bat",
"LICENSE.txt",
"Readme.md",
"build_info.txt",
"changelog.txt",
"dllexport.1.8.1.nupkg.sha512",
"dllexport.nuspec",
"hMSBuild.bat",
"lib/net20/_._",
"lib/netstandard1.1/_._",
"maps/DllExport.bat.map",
"maps/DllExport.bat.map.targets",
"tests.bat",
"tests/DiffVTests.bat",
"tests/DiffVswStreamTests.bat",
"tests/GetNuTool/_run.bat",
"tests/GetNuTool/a.bat",
"tests/GetNuTool/keysAndLogicTests.bat",
"tests/ManagerKeyTests.bat",
"tests/ManagerKeyTests.targets",
"tests/VswStreamTests.bat",
"tests/VswasTests.bat",
"tests/_run.bat",
"tests/a.bat",
"tests/dbgdcore.bat",
"tests/dbghcore.bat",
"tests/hMSBuild/a.bat",
"tests/keysAndLogicTests.bat",
"tools/Conari.dll",
"tools/Huid.dll",
"tools/Mono.Cecil.dll",
"tools/MvsSln.dll",
"tools/MvsSln.xml",
"tools/PeViewer.exe",
"tools/PeViewer.exe.config",
"tools/clrtypes/DefaultInterpolatedStringHandler/.cs",
"tools/coreclr/LICENSE.TXT",
"tools/coreclr/README.md",
"tools/coreclr/changelog.txt",
"tools/coreclr/ilasm.exe",
"tools/coreclr/ildasm.exe",
"tools/gnt.bat",
"tools/hMSBuild.bat",
"tools/init.ps1",
"tools/net.r_eg.DllExport.Activator.dll",
"tools/net.r_eg.DllExport.NSBin.dll",
"tools/net.r_eg.DllExport.Wizard.dll",
"tools/net.r_eg.DllExport.Wizard.targets",
"tools/net.r_eg.DllExport.dll",
"tools/net.r_eg.DllExport.targets",
"tools/netfx4sdk.cmd",
"tools/raw/lib/net20/DllExport.dll",
"tools/raw/lib/net20/DllExport.xml",
"tools/raw/lib/netstd/DllExport.dll",
"tools/raw/lib/netstd/DllExport.xml"
]
}
},
"projectFileDependencyGroups": {
".NETFramework,Version=v4.7.2": [
"DllExport >= 1.8.1"
]
},
"packageFolders": {
"/home/runner/.nuget/packages/": {}
},
"project": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "/home/runner/work/PN532-Aime-Reader/PN532-Aime-Reader/src/NfcAime.Dll/NfcAime.Dll.csproj",
"projectName": "NfcAime.Dll",
"projectPath": "/home/runner/work/PN532-Aime-Reader/PN532-Aime-Reader/src/NfcAime.Dll/NfcAime.Dll.csproj",
"packagesPath": "/home/runner/.nuget/packages/",
"outputPath": "/home/runner/work/PN532-Aime-Reader/PN532-Aime-Reader/src/NfcAime.Dll/obj/",
"projectStyle": "PackageReference",
"skipContentFileWrite": true,
"UsingMicrosoftNETSdk": false,
"configFilePaths": [
"/home/runner/.nuget/NuGet/NuGet.Config"
],
"originalTargetFrameworks": [
"net472"
],
"sources": {
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net472": {
"projectReferences": {}
}
},
"restoreAuditProperties": {
"enableAudit": "true",
"auditLevel": "low",
"auditMode": "direct"
}
},
"frameworks": {
"net472": {
"dependencies": {
"DllExport": {
"target": "Package",
"version": "[1.8.1, )"
}
}
}
}
}
}

View File

@@ -0,0 +1,10 @@
{
"version": 2,
"dgSpecHash": "a9yY1Irx4Zg=",
"success": true,
"projectFilePath": "/home/runner/work/PN532-Aime-Reader/PN532-Aime-Reader/src/NfcAime.Dll/NfcAime.Dll.csproj",
"expectedPackageFiles": [
"/home/runner/.nuget/packages/dllexport/1.8.1/dllexport.1.8.1.nupkg.sha512"
],
"logs": []
}