mirror of
https://github.com/par274/sharpemu.git
synced 2026-07-25 20:28:48 +08:00
2d72d0e4fc
src/SharpEmu.CLI/packages.lock.json was the only lock file left and nothing enforces it: CI does not restore with --locked-mode, and the committed lock was generated with a newer SDK than global.json pins (ILLink.Tasks 10.0.8 vs the 10.0.3 that SDK 10.0.103 produces), so anyone on the pinned SDK who ran a locked-mode restore failed on an inconsistency they could not fix without rewriting the file. Package versions stay centralized in Directory.Packages.props. Drop RestorePackagesWithLockFile and gitignore future regenerations.
46 lines
451 B
Plaintext
46 lines
451 B
Plaintext
# Copyright (C) 2026 SharpEmu Emulator Project
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
[Dd]ebug/
|
|
[Rr]elease/
|
|
[Bb]in/
|
|
[Oo]bj/
|
|
[Pp]ublish/
|
|
[Aa]rtifacts/
|
|
logs/
|
|
.tmp/
|
|
|
|
x86/
|
|
x64/
|
|
arm64/
|
|
|
|
[Tt]est[Rr]esult*/
|
|
[Bb]uild[Ll]og.*
|
|
|
|
*.tmp
|
|
*.tmp_proj
|
|
*.log
|
|
|
|
*.user
|
|
*.suo
|
|
*.userosscache
|
|
*.sln.docstates
|
|
|
|
.packages
|
|
packages/
|
|
*.nupkg
|
|
.nuget/
|
|
.dotnet-home/
|
|
.cache/
|
|
__pycache__/
|
|
*.py[cod]
|
|
|
|
.DS_Store
|
|
Thumbs.db
|
|
Desktop.ini
|
|
ehthumbs.db
|
|
|
|
.vs/
|
|
.idea/
|
|
packages.lock.json
|