❔ Error CS0579
Error CS0579 Duplicate 'System.Reflection.AssemblyVersionAttribute' attribute PacktLibraryNetStandard2 C:\cs11dotnet7\Chapter05\PacktLibraryNetStandard2\obj\Debug\net7.0\PacktLibraryNetStandard2.AssemblyInfo.cs
[assembly: AssemblyVersion()]


src and test levels if you want, but the you MUST have a separate folder for each project[assembly: AssemblyVersion()].
├── src
│ ├── YourProject
│ │ ├── Class1.cs
│ │ └── YourProject.csproj
│ └── YourProject.Lib
│ ├── Class1.cs
│ └── YourProject.Lib.csproj
├── test
│ ├── YourProject.Tests
│ │ ├── Class1Tests.cs
│ │ └── YourProject.Tests.csproj
│ └── YourProject.Perf
│ ├── Program.cs
│ └── YourProject.Perf.csproj
├── YourProject.sln
├── .gitignore
├── .editorconfig
└── README