You can configure the settings of the application in the App.config file. This file is in the root folder of the application.
The following snippet shows available parameters of the Graphics Mill application, which you can set up in App.config with their default values.
<configuration> <appSettings> <add key="GraphicsMillTempPath" value="C:\gm_temp" /> <add key="GraphicsMillLicense" value="" /> </appSettings> </configuration>
Let's look at these parameters in more detail.
| Name | Description | Possible values |
|---|---|---|
| GraphicsMillTempPath | The path to the temporary folder used by Graphics Mill. The default value is "C:\gm_temp".
This can also be set in code using Aurigma.GraphicsMill.Configuration.TempPath. |
folder path |
| GraphicsMillLicense | The license key for Graphics Mill. For example, "80FF0-112E8-123B6-81238-94D4C-FE0123". This can also be set in code using
Aurigma.GraphicsMill.Configuration.License. |
string |
In addition to configuring settings in the App.config file, you can also set these parameters directly in your code using the Aurigma.GraphicsMill.Configuration namespace.
Aurigma.GraphicsMill.Configuration.TempPath = @"C:\custom_temp";
Aurigma.GraphicsMill.Configuration.License = "your-license-key-here";