annotate ServerMonitor/ServerMonitor.csproj @ 31:88ca7e4fc023

Allow running a file check on a directory.
author Brad Greco <brad@bgreco.net>
date Sun, 16 Jun 2019 16:54:46 -0400
parents f6235dc0a8ec
children 9c0e18d65e8b
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
1 <?xml version="1.0" encoding="utf-8"?>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
2 <Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
3 <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
4 <PropertyGroup>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
5 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
6 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
7 <ProjectGuid>{68E905D9-18FD-4ADC-9CF7-B5984C3E2158}</ProjectGuid>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
8 <OutputType>WinExe</OutputType>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
9 <RootNamespace>ServerMonitorApp</RootNamespace>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
10 <AssemblyName>ServerMonitor</AssemblyName>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
11 <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
12 <FileAlignment>512</FileAlignment>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
13 <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
14 <TargetFrameworkProfile />
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
15 <SccProjectName>&lt;Project Location In Database&gt;</SccProjectName>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
16 <SccLocalPath>&lt;Local Binding Root of Project&gt;</SccLocalPath>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
17 <SccAuxPath>&lt;Source Control Database&gt;</SccAuxPath>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
18 <SccProvider>Mercurial Source Control Package</SccProvider>
19
b3128fe10d57 Add About form and license.
Brad Greco <brad@bgreco.net>
parents: 18
diff changeset
19 <IsWebBootstrapper>false</IsWebBootstrapper>
b3128fe10d57 Add About form and license.
Brad Greco <brad@bgreco.net>
parents: 18
diff changeset
20 <PublishUrl>publish\</PublishUrl>
b3128fe10d57 Add About form and license.
Brad Greco <brad@bgreco.net>
parents: 18
diff changeset
21 <Install>true</Install>
b3128fe10d57 Add About form and license.
Brad Greco <brad@bgreco.net>
parents: 18
diff changeset
22 <InstallFrom>Disk</InstallFrom>
b3128fe10d57 Add About form and license.
Brad Greco <brad@bgreco.net>
parents: 18
diff changeset
23 <UpdateEnabled>false</UpdateEnabled>
b3128fe10d57 Add About form and license.
Brad Greco <brad@bgreco.net>
parents: 18
diff changeset
24 <UpdateMode>Foreground</UpdateMode>
b3128fe10d57 Add About form and license.
Brad Greco <brad@bgreco.net>
parents: 18
diff changeset
25 <UpdateInterval>7</UpdateInterval>
b3128fe10d57 Add About form and license.
Brad Greco <brad@bgreco.net>
parents: 18
diff changeset
26 <UpdateIntervalUnits>Days</UpdateIntervalUnits>
b3128fe10d57 Add About form and license.
Brad Greco <brad@bgreco.net>
parents: 18
diff changeset
27 <UpdatePeriodically>false</UpdatePeriodically>
b3128fe10d57 Add About form and license.
Brad Greco <brad@bgreco.net>
parents: 18
diff changeset
28 <UpdateRequired>false</UpdateRequired>
b3128fe10d57 Add About form and license.
Brad Greco <brad@bgreco.net>
parents: 18
diff changeset
29 <MapFileExtensions>true</MapFileExtensions>
b3128fe10d57 Add About form and license.
Brad Greco <brad@bgreco.net>
parents: 18
diff changeset
30 <SupportUrl>https://www.bgreco.net/servermonitor</SupportUrl>
b3128fe10d57 Add About form and license.
Brad Greco <brad@bgreco.net>
parents: 18
diff changeset
31 <ProductName>Server Monitor</ProductName>
b3128fe10d57 Add About form and license.
Brad Greco <brad@bgreco.net>
parents: 18
diff changeset
32 <PublisherName>Brad Greco</PublisherName>
b3128fe10d57 Add About form and license.
Brad Greco <brad@bgreco.net>
parents: 18
diff changeset
33 <ApplicationRevision>0</ApplicationRevision>
b3128fe10d57 Add About form and license.
Brad Greco <brad@bgreco.net>
parents: 18
diff changeset
34 <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
b3128fe10d57 Add About form and license.
Brad Greco <brad@bgreco.net>
parents: 18
diff changeset
35 <UseApplicationTrust>false</UseApplicationTrust>
b3128fe10d57 Add About form and license.
Brad Greco <brad@bgreco.net>
parents: 18
diff changeset
36 <BootstrapperEnabled>true</BootstrapperEnabled>
0
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
37 </PropertyGroup>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
38 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
39 <PlatformTarget>AnyCPU</PlatformTarget>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
40 <DebugSymbols>true</DebugSymbols>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
41 <DebugType>full</DebugType>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
42 <Optimize>false</Optimize>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
43 <OutputPath>bin\Debug\</OutputPath>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
44 <DefineConstants>DEBUG;TRACE</DefineConstants>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
45 <ErrorReport>prompt</ErrorReport>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
46 <WarningLevel>4</WarningLevel>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
47 <Prefer32Bit>false</Prefer32Bit>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
48 <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
49 </PropertyGroup>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
50 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
51 <PlatformTarget>AnyCPU</PlatformTarget>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
52 <DebugType>pdbonly</DebugType>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
53 <Optimize>true</Optimize>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
54 <OutputPath>bin\Release\</OutputPath>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
55 <DefineConstants>TRACE</DefineConstants>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
56 <ErrorReport>prompt</ErrorReport>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
57 <WarningLevel>4</WarningLevel>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
58 <Prefer32Bit>false</Prefer32Bit>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
59 </PropertyGroup>
19
b3128fe10d57 Add About form and license.
Brad Greco <brad@bgreco.net>
parents: 18
diff changeset
60 <PropertyGroup>
b3128fe10d57 Add About form and license.
Brad Greco <brad@bgreco.net>
parents: 18
diff changeset
61 <ApplicationIcon>icon.ico</ApplicationIcon>
b3128fe10d57 Add About form and license.
Brad Greco <brad@bgreco.net>
parents: 18
diff changeset
62 </PropertyGroup>
0
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
63 <ItemGroup>
10
9e77c0dccb66 Add update checker
Brad Greco <brad@bgreco.net>
parents: 8
diff changeset
64 <Reference Include="NAppUpdate.Framework, Version=0.5.1.0, Culture=neutral, PublicKeyToken=d1f1d1f19f9e5a56, processorArchitecture=MSIL">
9e77c0dccb66 Add update checker
Brad Greco <brad@bgreco.net>
parents: 8
diff changeset
65 <HintPath>..\packages\NAppUpdate.Framework.0.5.1.0\lib\net40\NAppUpdate.Framework.dll</HintPath>
9e77c0dccb66 Add update checker
Brad Greco <brad@bgreco.net>
parents: 8
diff changeset
66 </Reference>
29
f6235dc0a8ec Add ability to play a sound on check failure.
Brad Greco <brad@bgreco.net>
parents: 19
diff changeset
67 <Reference Include="NAudio, Version=1.9.0.0, Culture=neutral, processorArchitecture=MSIL">
f6235dc0a8ec Add ability to play a sound on check failure.
Brad Greco <brad@bgreco.net>
parents: 19
diff changeset
68 <HintPath>..\packages\NAudio.1.9.0\lib\net35\NAudio.dll</HintPath>
f6235dc0a8ec Add ability to play a sound on check failure.
Brad Greco <brad@bgreco.net>
parents: 19
diff changeset
69 </Reference>
0
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
70 <Reference Include="Renci.SshNet, Version=2016.1.0.0, Culture=neutral, PublicKeyToken=1cee9f8bde3db106, processorArchitecture=MSIL">
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
71 <HintPath>..\packages\SSH.NET.2016.1.0\lib\net40\Renci.SshNet.dll</HintPath>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
72 </Reference>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
73 <Reference Include="System" />
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
74 <Reference Include="System.Core" />
18
b713b9db4c82 HTTP checks.
Brad Greco <brad@bgreco.net>
parents: 17
diff changeset
75 <Reference Include="System.Net.Http" />
0
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
76 <Reference Include="System.Security" />
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
77 <Reference Include="System.Xml.Linq" />
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
78 <Reference Include="System.Data.DataSetExtensions" />
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
79 <Reference Include="System.Data" />
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
80 <Reference Include="System.Deployment" />
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
81 <Reference Include="System.Drawing" />
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
82 <Reference Include="System.Windows.Forms" />
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
83 <Reference Include="System.Xml" />
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
84 </ItemGroup>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
85 <ItemGroup>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
86 <Compile Include="Attributes.cs" />
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
87 <Compile Include="Controls\CheckControl.cs">
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
88 <SubType>UserControl</SubType>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
89 </Compile>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
90 <Compile Include="Controls\CheckControl.Designer.cs">
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
91 <DependentUpon>CheckControl.cs</DependentUpon>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
92 </Compile>
3
96f0b028176d File check
Brad Greco <brad@bgreco.net>
parents: 2
diff changeset
93 <Compile Include="Controls\FileCheckControl.cs">
96f0b028176d File check
Brad Greco <brad@bgreco.net>
parents: 2
diff changeset
94 <SubType>UserControl</SubType>
96f0b028176d File check
Brad Greco <brad@bgreco.net>
parents: 2
diff changeset
95 </Compile>
96f0b028176d File check
Brad Greco <brad@bgreco.net>
parents: 2
diff changeset
96 <Compile Include="Controls\FileCheckControl.Designer.cs">
96f0b028176d File check
Brad Greco <brad@bgreco.net>
parents: 2
diff changeset
97 <DependentUpon>FileCheckControl.cs</DependentUpon>
96f0b028176d File check
Brad Greco <brad@bgreco.net>
parents: 2
diff changeset
98 </Compile>
2
453ecc1ed9ea Disk space check
Brad Greco <brad@bgreco.net>
parents: 1
diff changeset
99 <Compile Include="Controls\DiskSpaceCheckControl.cs">
453ecc1ed9ea Disk space check
Brad Greco <brad@bgreco.net>
parents: 1
diff changeset
100 <SubType>UserControl</SubType>
453ecc1ed9ea Disk space check
Brad Greco <brad@bgreco.net>
parents: 1
diff changeset
101 </Compile>
453ecc1ed9ea Disk space check
Brad Greco <brad@bgreco.net>
parents: 1
diff changeset
102 <Compile Include="Controls\DiskSpaceCheckControl.Designer.cs">
453ecc1ed9ea Disk space check
Brad Greco <brad@bgreco.net>
parents: 1
diff changeset
103 <DependentUpon>DiskSpaceCheckControl.cs</DependentUpon>
453ecc1ed9ea Disk space check
Brad Greco <brad@bgreco.net>
parents: 1
diff changeset
104 </Compile>
3
96f0b028176d File check
Brad Greco <brad@bgreco.net>
parents: 2
diff changeset
105 <Compile Include="Controls\TimeUnitsComboBox.cs">
96f0b028176d File check
Brad Greco <brad@bgreco.net>
parents: 2
diff changeset
106 <SubType>Component</SubType>
96f0b028176d File check
Brad Greco <brad@bgreco.net>
parents: 2
diff changeset
107 </Compile>
96f0b028176d File check
Brad Greco <brad@bgreco.net>
parents: 2
diff changeset
108 <Compile Include="Controls\SizeUnitsComboBox.cs">
96f0b028176d File check
Brad Greco <brad@bgreco.net>
parents: 2
diff changeset
109 <SubType>Component</SubType>
96f0b028176d File check
Brad Greco <brad@bgreco.net>
parents: 2
diff changeset
110 </Compile>
0
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
111 <Compile Include="Controls\SshCheckControl.cs">
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
112 <SubType>UserControl</SubType>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
113 </Compile>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
114 <Compile Include="Controls\SshCheckControl.Designer.cs">
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
115 <DependentUpon>SshCheckControl.cs</DependentUpon>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
116 </Compile>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
117 <Compile Include="Controls\HttpCheckControl.cs">
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
118 <SubType>UserControl</SubType>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
119 </Compile>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
120 <Compile Include="Controls\HttpCheckControl.Designer.cs">
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
121 <DependentUpon>HttpCheckControl.cs</DependentUpon>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
122 </Compile>
1
9e92780ebc0f Additional validation for SSH check
Brad Greco <brad@bgreco.net>
parents: 0
diff changeset
123 <Compile Include="Controls\MatchComboBox.cs">
0
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
124 <SubType>Component</SubType>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
125 </Compile>
19
b3128fe10d57 Add About form and license.
Brad Greco <brad@bgreco.net>
parents: 18
diff changeset
126 <Compile Include="Forms\AboutForm.cs">
b3128fe10d57 Add About form and license.
Brad Greco <brad@bgreco.net>
parents: 18
diff changeset
127 <SubType>Form</SubType>
b3128fe10d57 Add About form and license.
Brad Greco <brad@bgreco.net>
parents: 18
diff changeset
128 </Compile>
b3128fe10d57 Add About form and license.
Brad Greco <brad@bgreco.net>
parents: 18
diff changeset
129 <Compile Include="Forms\AboutForm.Designer.cs">
b3128fe10d57 Add About form and license.
Brad Greco <brad@bgreco.net>
parents: 18
diff changeset
130 <DependentUpon>AboutForm.cs</DependentUpon>
b3128fe10d57 Add About form and license.
Brad Greco <brad@bgreco.net>
parents: 18
diff changeset
131 </Compile>
10
9e77c0dccb66 Add update checker
Brad Greco <brad@bgreco.net>
parents: 8
diff changeset
132 <Compile Include="Forms\UpdateDialog.cs">
9e77c0dccb66 Add update checker
Brad Greco <brad@bgreco.net>
parents: 8
diff changeset
133 <SubType>Form</SubType>
9e77c0dccb66 Add update checker
Brad Greco <brad@bgreco.net>
parents: 8
diff changeset
134 </Compile>
9e77c0dccb66 Add update checker
Brad Greco <brad@bgreco.net>
parents: 8
diff changeset
135 <Compile Include="Forms\UpdateDialog.Designer.cs">
9e77c0dccb66 Add update checker
Brad Greco <brad@bgreco.net>
parents: 8
diff changeset
136 <DependentUpon>UpdateDialog.cs</DependentUpon>
9e77c0dccb66 Add update checker
Brad Greco <brad@bgreco.net>
parents: 8
diff changeset
137 </Compile>
5
b6fe203af9d5 Private key passwords and validation
Brad Greco <brad@bgreco.net>
parents: 4
diff changeset
138 <Compile Include="Forms\InputDialog.cs">
b6fe203af9d5 Private key passwords and validation
Brad Greco <brad@bgreco.net>
parents: 4
diff changeset
139 <SubType>Form</SubType>
b6fe203af9d5 Private key passwords and validation
Brad Greco <brad@bgreco.net>
parents: 4
diff changeset
140 </Compile>
b6fe203af9d5 Private key passwords and validation
Brad Greco <brad@bgreco.net>
parents: 4
diff changeset
141 <Compile Include="Forms\InputDialog.Designer.cs">
b6fe203af9d5 Private key passwords and validation
Brad Greco <brad@bgreco.net>
parents: 4
diff changeset
142 <DependentUpon>InputDialog.cs</DependentUpon>
b6fe203af9d5 Private key passwords and validation
Brad Greco <brad@bgreco.net>
parents: 4
diff changeset
143 </Compile>
4
3142e52cbe69 Lots more progress
Brad Greco <brad@bgreco.net>
parents: 3
diff changeset
144 <Compile Include="Forms\SettingsForm.cs">
3142e52cbe69 Lots more progress
Brad Greco <brad@bgreco.net>
parents: 3
diff changeset
145 <SubType>Form</SubType>
3142e52cbe69 Lots more progress
Brad Greco <brad@bgreco.net>
parents: 3
diff changeset
146 </Compile>
3142e52cbe69 Lots more progress
Brad Greco <brad@bgreco.net>
parents: 3
diff changeset
147 <Compile Include="Forms\SettingsForm.Designer.cs">
3142e52cbe69 Lots more progress
Brad Greco <brad@bgreco.net>
parents: 3
diff changeset
148 <DependentUpon>SettingsForm.cs</DependentUpon>
3142e52cbe69 Lots more progress
Brad Greco <brad@bgreco.net>
parents: 3
diff changeset
149 </Compile>
3
96f0b028176d File check
Brad Greco <brad@bgreco.net>
parents: 2
diff changeset
150 <Compile Include="Objects\Checks\FileCheck.cs" />
2
453ecc1ed9ea Disk space check
Brad Greco <brad@bgreco.net>
parents: 1
diff changeset
151 <Compile Include="Objects\Checks\DiskSpaceCheck.cs" />
1
9e92780ebc0f Additional validation for SSH check
Brad Greco <brad@bgreco.net>
parents: 0
diff changeset
152 <Compile Include="Objects\UpdateCheckException.cs" />
0
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
153 <Compile Include="Forms\CheckBoxDialog.cs">
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
154 <SubType>Form</SubType>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
155 </Compile>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
156 <Compile Include="Forms\CheckBoxDialog.Designer.cs">
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
157 <DependentUpon>CheckBoxDialog.cs</DependentUpon>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
158 </Compile>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
159 <Compile Include="Forms\CheckForm.cs">
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
160 <SubType>Form</SubType>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
161 </Compile>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
162 <Compile Include="Forms\CheckForm.Designer.cs">
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
163 <DependentUpon>CheckForm.cs</DependentUpon>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
164 </Compile>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
165 <Compile Include="Forms\QuickHelpForm.cs">
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
166 <SubType>Form</SubType>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
167 </Compile>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
168 <Compile Include="Forms\QuickHelpForm.Designer.cs">
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
169 <DependentUpon>QuickHelpForm.cs</DependentUpon>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
170 </Compile>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
171 <Compile Include="Helpers.cs" />
2
453ecc1ed9ea Disk space check
Brad Greco <brad@bgreco.net>
parents: 1
diff changeset
172 <Compile Include="Objects\Checks\Check.cs" />
0
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
173 <Compile Include="Objects\CheckResult.cs" />
2
453ecc1ed9ea Disk space check
Brad Greco <brad@bgreco.net>
parents: 1
diff changeset
174 <Compile Include="Objects\Checks\HttpCheck.cs" />
0
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
175 <Compile Include="Objects\Logger.cs" />
2
453ecc1ed9ea Disk space check
Brad Greco <brad@bgreco.net>
parents: 1
diff changeset
176 <Compile Include="Objects\Checks\PingCheck.cs" />
0
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
177 <Compile Include="Objects\Schedule.cs" />
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
178 <Compile Include="Objects\Server.cs" />
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
179 <Compile Include="Forms\ServerForm.cs">
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
180 <SubType>Form</SubType>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
181 </Compile>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
182 <Compile Include="Forms\ServerForm.Designer.cs">
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
183 <DependentUpon>ServerForm.cs</DependentUpon>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
184 </Compile>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
185 <Compile Include="Objects\ServerMonitor.cs" />
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
186 <Compile Include="Forms\ServerSummaryForm.cs">
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
187 <SubType>Form</SubType>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
188 </Compile>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
189 <Compile Include="Forms\ServerSummaryForm.Designer.cs">
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
190 <DependentUpon>ServerSummaryForm.cs</DependentUpon>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
191 </Compile>
2
453ecc1ed9ea Disk space check
Brad Greco <brad@bgreco.net>
parents: 1
diff changeset
192 <Compile Include="Objects\Checks\SshCheck.cs" />
0
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
193 <Compile Include="Program.cs" />
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
194 <Compile Include="Properties\AssemblyInfo.cs" />
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
195 <Compile Include="Controls\ServerSummaryControl.cs">
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
196 <SubType>UserControl</SubType>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
197 </Compile>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
198 <Compile Include="Controls\ServerSummaryControl.Designer.cs">
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
199 <DependentUpon>ServerSummaryControl.cs</DependentUpon>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
200 </Compile>
4
3142e52cbe69 Lots more progress
Brad Greco <brad@bgreco.net>
parents: 3
diff changeset
201 <Compile Include="Properties\Resources.Designer.cs">
3142e52cbe69 Lots more progress
Brad Greco <brad@bgreco.net>
parents: 3
diff changeset
202 <DesignTime>True</DesignTime>
3142e52cbe69 Lots more progress
Brad Greco <brad@bgreco.net>
parents: 3
diff changeset
203 <AutoGen>True</AutoGen>
3142e52cbe69 Lots more progress
Brad Greco <brad@bgreco.net>
parents: 3
diff changeset
204 <DependentUpon>Resources.resx</DependentUpon>
3142e52cbe69 Lots more progress
Brad Greco <brad@bgreco.net>
parents: 3
diff changeset
205 </Compile>
3142e52cbe69 Lots more progress
Brad Greco <brad@bgreco.net>
parents: 3
diff changeset
206 <Compile Include="Win32Helpers.cs" />
0
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
207 <EmbeddedResource Include="Controls\CheckControl.resx">
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
208 <DependentUpon>CheckControl.cs</DependentUpon>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
209 </EmbeddedResource>
3
96f0b028176d File check
Brad Greco <brad@bgreco.net>
parents: 2
diff changeset
210 <EmbeddedResource Include="Controls\FileCheckControl.resx">
96f0b028176d File check
Brad Greco <brad@bgreco.net>
parents: 2
diff changeset
211 <DependentUpon>FileCheckControl.cs</DependentUpon>
96f0b028176d File check
Brad Greco <brad@bgreco.net>
parents: 2
diff changeset
212 </EmbeddedResource>
2
453ecc1ed9ea Disk space check
Brad Greco <brad@bgreco.net>
parents: 1
diff changeset
213 <EmbeddedResource Include="Controls\DiskSpaceCheckControl.resx">
453ecc1ed9ea Disk space check
Brad Greco <brad@bgreco.net>
parents: 1
diff changeset
214 <DependentUpon>DiskSpaceCheckControl.cs</DependentUpon>
453ecc1ed9ea Disk space check
Brad Greco <brad@bgreco.net>
parents: 1
diff changeset
215 </EmbeddedResource>
0
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
216 <EmbeddedResource Include="Controls\SshCheckControl.resx">
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
217 <DependentUpon>SshCheckControl.cs</DependentUpon>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
218 </EmbeddedResource>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
219 <EmbeddedResource Include="Controls\HttpCheckControl.resx">
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
220 <DependentUpon>HttpCheckControl.cs</DependentUpon>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
221 </EmbeddedResource>
19
b3128fe10d57 Add About form and license.
Brad Greco <brad@bgreco.net>
parents: 18
diff changeset
222 <EmbeddedResource Include="Forms\AboutForm.resx">
b3128fe10d57 Add About form and license.
Brad Greco <brad@bgreco.net>
parents: 18
diff changeset
223 <DependentUpon>AboutForm.cs</DependentUpon>
b3128fe10d57 Add About form and license.
Brad Greco <brad@bgreco.net>
parents: 18
diff changeset
224 </EmbeddedResource>
10
9e77c0dccb66 Add update checker
Brad Greco <brad@bgreco.net>
parents: 8
diff changeset
225 <EmbeddedResource Include="Forms\UpdateDialog.resx">
9e77c0dccb66 Add update checker
Brad Greco <brad@bgreco.net>
parents: 8
diff changeset
226 <DependentUpon>UpdateDialog.cs</DependentUpon>
9e77c0dccb66 Add update checker
Brad Greco <brad@bgreco.net>
parents: 8
diff changeset
227 </EmbeddedResource>
0
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
228 <EmbeddedResource Include="Forms\CheckBoxDialog.resx">
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
229 <DependentUpon>CheckBoxDialog.cs</DependentUpon>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
230 </EmbeddedResource>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
231 <EmbeddedResource Include="Forms\CheckForm.resx">
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
232 <DependentUpon>CheckForm.cs</DependentUpon>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
233 </EmbeddedResource>
5
b6fe203af9d5 Private key passwords and validation
Brad Greco <brad@bgreco.net>
parents: 4
diff changeset
234 <EmbeddedResource Include="Forms\InputDialog.resx">
b6fe203af9d5 Private key passwords and validation
Brad Greco <brad@bgreco.net>
parents: 4
diff changeset
235 <DependentUpon>InputDialog.cs</DependentUpon>
b6fe203af9d5 Private key passwords and validation
Brad Greco <brad@bgreco.net>
parents: 4
diff changeset
236 </EmbeddedResource>
0
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
237 <EmbeddedResource Include="Forms\QuickHelpForm.resx">
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
238 <DependentUpon>QuickHelpForm.cs</DependentUpon>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
239 </EmbeddedResource>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
240 <EmbeddedResource Include="Forms\ServerForm.resx">
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
241 <DependentUpon>ServerForm.cs</DependentUpon>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
242 </EmbeddedResource>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
243 <EmbeddedResource Include="Controls\ServerSummaryControl.resx">
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
244 <DependentUpon>ServerSummaryControl.cs</DependentUpon>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
245 </EmbeddedResource>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
246 <EmbeddedResource Include="Forms\ServerSummaryForm.resx">
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
247 <DependentUpon>ServerSummaryForm.cs</DependentUpon>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
248 </EmbeddedResource>
4
3142e52cbe69 Lots more progress
Brad Greco <brad@bgreco.net>
parents: 3
diff changeset
249 <EmbeddedResource Include="Forms\SettingsForm.resx">
3142e52cbe69 Lots more progress
Brad Greco <brad@bgreco.net>
parents: 3
diff changeset
250 <DependentUpon>SettingsForm.cs</DependentUpon>
3142e52cbe69 Lots more progress
Brad Greco <brad@bgreco.net>
parents: 3
diff changeset
251 </EmbeddedResource>
0
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
252 <EmbeddedResource Include="Properties\Resources.resx">
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
253 <Generator>ResXFileCodeGenerator</Generator>
4
3142e52cbe69 Lots more progress
Brad Greco <brad@bgreco.net>
parents: 3
diff changeset
254 <SubType>Designer</SubType>
0
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
255 <LastGenOutput>Resources.Designer.cs</LastGenOutput>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
256 </EmbeddedResource>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
257 <None Include="packages.config" />
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
258 <None Include="Properties\DataSources\CheckResult.datasource" />
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
259 <None Include="Properties\Settings.settings">
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
260 <Generator>SettingsSingleFileGenerator</Generator>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
261 <LastGenOutput>Settings.Designer.cs</LastGenOutput>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
262 </None>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
263 <Compile Include="Properties\Settings.Designer.cs">
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
264 <AutoGen>True</AutoGen>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
265 <DependentUpon>Settings.settings</DependentUpon>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
266 <DesignTimeSharedInput>True</DesignTimeSharedInput>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
267 </Compile>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
268 </ItemGroup>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
269 <ItemGroup>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
270 <None Include="App.config" />
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
271 </ItemGroup>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
272 <ItemGroup>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
273 <None Include="Resources\delete.png" />
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
274 </ItemGroup>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
275 <ItemGroup>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
276 <None Include="Resources\run.png" />
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
277 </ItemGroup>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
278 <ItemGroup>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
279 <None Include="Resources\runall.png" />
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
280 </ItemGroup>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
281 <ItemGroup>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
282 <None Include="Resources\add.png" />
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
283 </ItemGroup>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
284 <ItemGroup>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
285 <None Include="Resources\edit.png" />
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
286 </ItemGroup>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
287 <ItemGroup>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
288 <None Include="Resources\server.png" />
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
289 </ItemGroup>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
290 <ItemGroup>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
291 <None Include="Resources\help.png" />
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
292 </ItemGroup>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
293 <ItemGroup>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
294 <None Include="Resources\warning.png" />
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
295 </ItemGroup>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
296 <ItemGroup>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
297 <None Include="Resources\info.png" />
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
298 </ItemGroup>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
299 <ItemGroup>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
300 <None Include="Resources\error.png" />
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
301 </ItemGroup>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
302 <ItemGroup>
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
303 <None Include="Resources\pass.png" />
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
304 </ItemGroup>
4
3142e52cbe69 Lots more progress
Brad Greco <brad@bgreco.net>
parents: 3
diff changeset
305 <ItemGroup>
3142e52cbe69 Lots more progress
Brad Greco <brad@bgreco.net>
parents: 3
diff changeset
306 <None Include="Resources\settings.png" />
3142e52cbe69 Lots more progress
Brad Greco <brad@bgreco.net>
parents: 3
diff changeset
307 </ItemGroup>
3142e52cbe69 Lots more progress
Brad Greco <brad@bgreco.net>
parents: 3
diff changeset
308 <ItemGroup>
3142e52cbe69 Lots more progress
Brad Greco <brad@bgreco.net>
parents: 3
diff changeset
309 <None Include="Resources\disable.png" />
3142e52cbe69 Lots more progress
Brad Greco <brad@bgreco.net>
parents: 3
diff changeset
310 </ItemGroup>
8
052aa62cb42a Single instance. Add autorun option. Add icons. General enhancements.
Brad Greco <brad@bgreco.net>
parents: 5
diff changeset
311 <ItemGroup>
052aa62cb42a Single instance. Add autorun option. Add icons. General enhancements.
Brad Greco <brad@bgreco.net>
parents: 5
diff changeset
312 <None Include="Resources\monitor.ico" />
052aa62cb42a Single instance. Add autorun option. Add icons. General enhancements.
Brad Greco <brad@bgreco.net>
parents: 5
diff changeset
313 </ItemGroup>
052aa62cb42a Single instance. Add autorun option. Add icons. General enhancements.
Brad Greco <brad@bgreco.net>
parents: 5
diff changeset
314 <ItemGroup>
052aa62cb42a Single instance. Add autorun option. Add icons. General enhancements.
Brad Greco <brad@bgreco.net>
parents: 5
diff changeset
315 <None Include="Resources\icon_error.ico" />
052aa62cb42a Single instance. Add autorun option. Add icons. General enhancements.
Brad Greco <brad@bgreco.net>
parents: 5
diff changeset
316 </ItemGroup>
052aa62cb42a Single instance. Add autorun option. Add icons. General enhancements.
Brad Greco <brad@bgreco.net>
parents: 5
diff changeset
317 <ItemGroup>
052aa62cb42a Single instance. Add autorun option. Add icons. General enhancements.
Brad Greco <brad@bgreco.net>
parents: 5
diff changeset
318 <None Include="Resources\icon_warning.ico" />
052aa62cb42a Single instance. Add autorun option. Add icons. General enhancements.
Brad Greco <brad@bgreco.net>
parents: 5
diff changeset
319 </ItemGroup>
052aa62cb42a Single instance. Add autorun option. Add icons. General enhancements.
Brad Greco <brad@bgreco.net>
parents: 5
diff changeset
320 <ItemGroup>
052aa62cb42a Single instance. Add autorun option. Add icons. General enhancements.
Brad Greco <brad@bgreco.net>
parents: 5
diff changeset
321 <None Include="Resources\icon_info.ico" />
052aa62cb42a Single instance. Add autorun option. Add icons. General enhancements.
Brad Greco <brad@bgreco.net>
parents: 5
diff changeset
322 </ItemGroup>
052aa62cb42a Single instance. Add autorun option. Add icons. General enhancements.
Brad Greco <brad@bgreco.net>
parents: 5
diff changeset
323 <ItemGroup>
052aa62cb42a Single instance. Add autorun option. Add icons. General enhancements.
Brad Greco <brad@bgreco.net>
parents: 5
diff changeset
324 <None Include="Resources\icon.ico" />
052aa62cb42a Single instance. Add autorun option. Add icons. General enhancements.
Brad Greco <brad@bgreco.net>
parents: 5
diff changeset
325 </ItemGroup>
19
b3128fe10d57 Add About form and license.
Brad Greco <brad@bgreco.net>
parents: 18
diff changeset
326 <ItemGroup>
b3128fe10d57 Add About form and license.
Brad Greco <brad@bgreco.net>
parents: 18
diff changeset
327 <Content Include="icon.ico" />
b3128fe10d57 Add About form and license.
Brad Greco <brad@bgreco.net>
parents: 18
diff changeset
328 <Content Include="LICENSE.txt" />
b3128fe10d57 Add About form and license.
Brad Greco <brad@bgreco.net>
parents: 18
diff changeset
329 <None Include="Resources\icon.png" />
b3128fe10d57 Add About form and license.
Brad Greco <brad@bgreco.net>
parents: 18
diff changeset
330 </ItemGroup>
b3128fe10d57 Add About form and license.
Brad Greco <brad@bgreco.net>
parents: 18
diff changeset
331 <ItemGroup>
b3128fe10d57 Add About form and license.
Brad Greco <brad@bgreco.net>
parents: 18
diff changeset
332 <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
b3128fe10d57 Add About form and license.
Brad Greco <brad@bgreco.net>
parents: 18
diff changeset
333 <Visible>False</Visible>
b3128fe10d57 Add About form and license.
Brad Greco <brad@bgreco.net>
parents: 18
diff changeset
334 <ProductName>.NET Framework 3.5 SP1</ProductName>
b3128fe10d57 Add About form and license.
Brad Greco <brad@bgreco.net>
parents: 18
diff changeset
335 <Install>false</Install>
b3128fe10d57 Add About form and license.
Brad Greco <brad@bgreco.net>
parents: 18
diff changeset
336 </BootstrapperPackage>
b3128fe10d57 Add About form and license.
Brad Greco <brad@bgreco.net>
parents: 18
diff changeset
337 </ItemGroup>
0
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
338 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
3e1a2131f897 Initial commit. Ping check, scheduling, UI working. SSH check mostly working.
Brad Greco <brad@bgreco.net>
parents:
diff changeset
339 </Project>