This should be easy but it's driving me nuts, I can't read from the app.config file. I've created a very basic test project and I keep getting the error Required parameter 'Value' not found.

It's there I can see it ! In the app.config file, someone put me out of my misery

My app.config

vb Code:
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <configuration>
  3. <appSettings>
  4.     <add key="Test" Value="Hello" />
  5. </appSettings>
  6. </configuration>


My little program to read it.

vb Code:
  1. Dim ConfigReader As ConfigurationSettings
  2.  
  3.     Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
  4.         Try
  5.             Label1.Text = ConfigReader.AppSettings.Get("Test")
  6.         Catch ex As Exception
  7.             MessageBox.Show(ex.Message)
  8.         End Try
  9.  
  10.     End Sub