❔ Cannot import another project

The image is the file structure of the solution. I'm trying to use the PasswordMangerLibrary. But it isn't letting me.

Program.cs:
using PasswordManagerLibrary;

namespace PasswordManagerConsoleApp
{
    static class Program
    {
        public static void Main(string[] args)
        {
            Console.WriteLine("Hello World!");
        }
    }
}


Manager.cs:
namespace PasswordManagerLibrary
{
    public class Manager
    {
        public static void Trying()
        {
            Console.WriteLine("Works!");
        }
    }
}


I feel like this is something really easy to fix but keep in mind i have a fever and i'm not fully operational 😅 .
image.png
Was this page helpful?