mirror of
https://github.com/markjprice/cs11dotnet7.git
synced 2026-01-04 15:19:57 +01:00
Added note about DLLs
This commit is contained in:
parent
8fdfe36e3f
commit
1648b2bd48
|
|
@ -6,6 +6,6 @@ If you find any mistakes in the seventh edition, *C# 11 and .NET 7 - Modern Cros
|
|||
|
||||
[**Improvements** (35 items)](improvements.md): Changes to text or code that would improve the content. These are optional.
|
||||
|
||||
[**Common Errors** (5 items)](common-errors.md): These are some of the most common errors that a reader might encounter when trying to get code in book tasks to work, or when trying to write your own code.
|
||||
[**Common Errors** (6 items)](common-errors.md): These are some of the most common errors that a reader might encounter when trying to get code in book tasks to work, or when trying to write your own code.
|
||||
|
||||
All errata and improvements will be included in the 8th edition planned for publishing in November 2023. To be included they must be submitted by mid-September 2023.
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
**Common Errors and How to Fix Them** (5 items)
|
||||
**Common Errors and How to Fix Them** (6 items)
|
||||
|
||||
If you have suggestions for other common errors, then please [raise an issue in this repository](https://github.com/markjprice/cs12dotnet8/issues) or email me at markjprice (at) gmail.com.
|
||||
|
||||
|
|
@ -32,6 +32,8 @@ If you cannot find the console app to close it, then it might still be running b
|
|||
|
||||
To solve this problem, reboot your computer.
|
||||
|
||||
> Although I use a console app (EXE) in the example above, this issue also applies to class libraries (DLL). You would need to shut down any processes that have the DLL loaded into memory before you can rebuild the class library.
|
||||
|
||||
# Microsoft introduces a bug in a later version
|
||||
|
||||
Although rare, it is possible that by using a later version of a NuGet package than the one I used to write the book, you experience different behavior, especially negative behavior if it is due to a bug.
|
||||
|
|
|
|||
Loading…
Reference in a new issue