Changeset 757
- Timestamp:
- 11/14/08 17:18:35 (16 years ago)
- Location:
- trunk/sources
- Files:
-
- 7 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Settings/HeuristicLab.Settings.csproj
r747 r757 37 37 <Reference Include="System" /> 38 38 <Reference Include="System.Data" /> 39 <Reference Include="System.Drawing" /> 40 <Reference Include="System.Windows.Forms" /> 39 41 <Reference Include="System.Xml" /> 40 42 </ItemGroup> 41 43 <ItemGroup> 42 44 <Compile Include="HeuristicLabSettingsPlugin.cs" /> 45 <Compile Include="HeuristicLabSettingsApplication.cs" /> 46 <Compile Include="MainForm.cs"> 47 <SubType>Form</SubType> 48 </Compile> 49 <Compile Include="MainForm.Designer.cs"> 50 <DependentUpon>MainForm.cs</DependentUpon> 51 </Compile> 43 52 <Compile Include="Properties\AssemblyInfo.cs" /> 53 <Compile Include="Properties\Settings.Designer.cs"> 54 <AutoGen>True</AutoGen> 55 <DesignTimeSharedInput>True</DesignTimeSharedInput> 56 <DependentUpon>Settings.settings</DependentUpon> 57 </Compile> 44 58 </ItemGroup> 45 59 <ItemGroup> … … 50 64 </ItemGroup> 51 65 <ItemGroup> 66 <None Include="app.config" /> 52 67 <None Include="HeuristicLab.snk" /> 53 68 <None Include="Properties\AssemblyInfo.frame" /> 69 <None Include="Properties\Settings.settings"> 70 <Generator>SettingsSingleFileGenerator</Generator> 71 <LastGenOutput>Settings.Designer.cs</LastGenOutput> 72 </None> 73 </ItemGroup> 74 <ItemGroup> 75 <EmbeddedResource Include="MainForm.resx"> 76 <DependentUpon>MainForm.cs</DependentUpon> 77 <SubType>Designer</SubType> 78 </EmbeddedResource> 54 79 </ItemGroup> 55 80 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> -
trunk/sources/HeuristicLab.Settings/HeuristicLabSettingsPlugin.cs
r747 r757 29 29 [PluginFile(Filename = "HeuristicLab.Settings-3.2.dll", Filetype = PluginFileType.Assembly)] 30 30 public class HeuristicLabSettingsPlugin : PluginBase { 31 public HeuristicLabSettingsPlugin() { 32 Settings.Properties.Settings settings = Properties.Settings.Default; 33 settings.AnotherSetting = DateTime.Now.ToString(); 34 settings.Save(); 35 } 31 36 } 32 37 } -
trunk/sources/HeuristicLab/CopyAssemblies.cmd
r749 r757 50 50 copy %1\HeuristicLab.SequentialEngine\%2\HeuristicLab.SequentialEngine-3.2.dll .\plugins 51 51 copy %1\HeuristicLab.Settings\%2\HeuristicLab.Settings-3.2.dll .\plugins 52 copy %1\HeuristicLab.Settings\%2\HeuristicLab.Settings-3.2.dll.config .\plugins 52 53 copy %1\HeuristicLab.SGA\%2\HeuristicLab.SGA-3.2.dll .\plugins 53 54 copy %1\HeuristicLab.SimOpt\%2\HeuristicLab.SimOpt-3.2.dll .\plugins
Note: See TracChangeset
for help on using the changeset viewer.