How can create connection string for production mode using c# and WPF Application. Now I used this connection string, and Windows Authentication in developer mode. And is working good.
<connectionStrings>
<add name="SensorSystem" connectionString="Data Source=DEVELOPMENT\SQLEXPRESS;Initial Catalog=SensorSystem;Integrated Security=True"
providerName="System.Data.SqlClient" />
For testing my application is working in the computer very well. But when is finish and database add in the server and application install in another computer is need SQL Authentication for better security and different connection string (I think).