/GPX.Server.Extension/GeoRSSClient/ProjectInstaller.cs

https://bitbucket.org/shope/dfu · C# · 19 lines · 17 code · 2 blank · 0 comment · 0 complexity · 76c90ff694324d3297c000e19244369a MD5 · raw file

  1. using System;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Configuration.Install;
  6. using System.Linq;
  7. namespace GeoRSSClient
  8. {
  9. [RunInstaller(true)]
  10. public partial class ProjectInstaller : System.Configuration.Install.Installer
  11. {
  12. public ProjectInstaller()
  13. {
  14. InitializeComponent();
  15. }
  16. }
  17. }