The project is named `Calculator.csproj` and is located on your computer at `C:\Projects\Task3` The Calculator project has two files: - `Calculator.cs` - `Program.cs` TODO 3.1: In the `Calculator.cs` file, configure the following: - To the `Calculator` class, add a static method named `Addition` that accepts two parameters - Ensure that the parameters accept values such as `1.5` and `3.6` TODO 3.2: In the `Program.cs` file, you need to configure the following: - Add code to call the `Addition` method and assign the result to a local variable. - Use the `Console.WriteLine` method to display the content of your local variable.