Server/SharpDisplayManager.csproj
author StephaneLenclud
Sat, 07 Jan 2017 20:21:42 +0100
changeset 277 71ba0dd622a5
parent 276 7cd495550d5f
child 279 10f0de70b69b
permissions -rw-r--r--
Created Audio Manager class.
Clean up CScore audio usage.
Fixing broken audio device change handler.
Fixed various audio Dispose deadlock due to Invoke usage.
Thus now using BeginInvoke instead.
sl@0
     1
<?xml version="1.0" encoding="utf-8"?>
StephaneLenclud@159
     2
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
sl@0
     3
  <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
sl@0
     4
  <PropertyGroup>
sl@0
     5
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
sl@0
     6
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
sl@0
     7
    <ProjectGuid>{1DA8C1B3-18C5-4E74-BE4E-0B0E15FBAF49}</ProjectGuid>
sl@0
     8
    <OutputType>WinExe</OutputType>
sl@0
     9
    <AppDesignerFolder>Properties</AppDesignerFolder>
sl@0
    10
    <RootNamespace>SharpDisplayManager</RootNamespace>
sl@0
    11
    <AssemblyName>SharpDisplayManager</AssemblyName>
StephaneLenclud@159
    12
    <TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
sl@0
    13
    <FileAlignment>512</FileAlignment>
sl@43
    14
    <TargetFrameworkProfile />
sl@84
    15
    <IsWebBootstrapper>true</IsWebBootstrapper>
StephaneLenclud@162
    16
    <NuGetPackageImportStamp>
StephaneLenclud@162
    17
    </NuGetPackageImportStamp>
sl@85
    18
    <PublishUrl>ftp://lenclud%40monroe.dreamhost.com/publish.slions.net/SharpDisplayManager/</PublishUrl>
sl@43
    19
    <Install>true</Install>
sl@84
    20
    <InstallFrom>Web</InstallFrom>
sl@84
    21
    <UpdateEnabled>true</UpdateEnabled>
sl@88
    22
    <UpdateMode>Background</UpdateMode>
sl@43
    23
    <UpdateInterval>7</UpdateInterval>
sl@43
    24
    <UpdateIntervalUnits>Days</UpdateIntervalUnits>
sl@88
    25
    <UpdatePeriodically>true</UpdatePeriodically>
sl@43
    26
    <UpdateRequired>false</UpdateRequired>
sl@43
    27
    <MapFileExtensions>true</MapFileExtensions>
sl@84
    28
    <InstallUrl>http://publish.slions.net/SharpDisplayManager/</InstallUrl>
sl@85
    29
    <SupportUrl>http://publish.slions.net/SharpDisplayManager/</SupportUrl>
sl@85
    30
    <ProductName>Sharp Display Manager</ProductName>
sl@85
    31
    <PublisherName>Slions</PublisherName>
sl@93
    32
    <SuiteName>Sharp Display Manager</SuiteName>
sl@84
    33
    <CreateWebPageOnPublish>true</CreateWebPageOnPublish>
sl@85
    34
    <WebPage>index.htm</WebPage>
sl@85
    35
    <OpenBrowserOnPublish>false</OpenBrowserOnPublish>
StephaneLenclud@149
    36
    <ApplicationRevision>0</ApplicationRevision>
StephaneLenclud@276
    37
    <ApplicationVersion>1.4.3.0</ApplicationVersion>
sl@43
    38
    <UseApplicationTrust>false</UseApplicationTrust>
sl@85
    39
    <CreateDesktopShortcut>true</CreateDesktopShortcut>
sl@84
    40
    <PublishWizardCompleted>true</PublishWizardCompleted>
StephaneLenclud@164
    41
    <BootstrapperEnabled>true</BootstrapperEnabled>
sl@0
    42
  </PropertyGroup>
sl@0
    43
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
sl@0
    44
    <PlatformTarget>AnyCPU</PlatformTarget>
sl@0
    45
    <DebugSymbols>true</DebugSymbols>
sl@0
    46
    <DebugType>full</DebugType>
sl@0
    47
    <Optimize>false</Optimize>
sl@18
    48
    <OutputPath>..\..\bin\MiniDisplay\Debug\</OutputPath>
sl@0
    49
    <DefineConstants>DEBUG;TRACE</DefineConstants>
sl@0
    50
    <ErrorReport>prompt</ErrorReport>
sl@0
    51
    <WarningLevel>4</WarningLevel>
sl@43
    52
    <Prefer32Bit>false</Prefer32Bit>
sl@0
    53
  </PropertyGroup>
sl@0
    54
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
sl@0
    55
    <PlatformTarget>AnyCPU</PlatformTarget>
sl@0
    56
    <DebugType>pdbonly</DebugType>
sl@0
    57
    <Optimize>true</Optimize>
sl@18
    58
    <OutputPath>..\..\bin\MiniDisplay\Release\</OutputPath>
sl@0
    59
    <DefineConstants>TRACE</DefineConstants>
sl@0
    60
    <ErrorReport>prompt</ErrorReport>
sl@0
    61
    <WarningLevel>4</WarningLevel>
sl@43
    62
    <Prefer32Bit>false</Prefer32Bit>
sl@43
    63
  </PropertyGroup>
sl@43
    64
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
sl@43
    65
    <DebugSymbols>true</DebugSymbols>
StephaneLenclud@163
    66
    <OutputPath>..\bin\x86\Debug\</OutputPath>
StephaneLenclud@164
    67
    <BaseIntermediateOutputPath>..\bin\x86\Debug\obj</BaseIntermediateOutputPath>
sl@43
    68
    <DefineConstants>DEBUG;TRACE</DefineConstants>
sl@43
    69
    <DebugType>full</DebugType>
sl@43
    70
    <PlatformTarget>x86</PlatformTarget>
sl@43
    71
    <ErrorReport>prompt</ErrorReport>
sl@43
    72
    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
sl@43
    73
    <Prefer32Bit>false</Prefer32Bit>
Stephane@161
    74
    <UseVSHostingProcess>true</UseVSHostingProcess>
sl@43
    75
  </PropertyGroup>
sl@43
    76
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
StephaneLenclud@163
    77
    <OutputPath>..\bin\x86\Release\</OutputPath>
StephaneLenclud@164
    78
    <BaseIntermediateOutputPath>..\bin\x86\Release\obj</BaseIntermediateOutputPath>
sl@43
    79
    <DefineConstants>TRACE</DefineConstants>
sl@43
    80
    <Optimize>true</Optimize>
sl@43
    81
    <DebugType>pdbonly</DebugType>
sl@43
    82
    <PlatformTarget>x86</PlatformTarget>
sl@43
    83
    <ErrorReport>prompt</ErrorReport>
sl@43
    84
    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
sl@43
    85
    <Prefer32Bit>false</Prefer32Bit>
sl@0
    86
  </PropertyGroup>
sl@84
    87
  <PropertyGroup>
StephaneLenclud@181
    88
    <SignManifests>true</SignManifests>
sl@84
    89
  </PropertyGroup>
sl@84
    90
  <PropertyGroup>
StephaneLenclud@181
    91
    <ManifestCertificateThumbprint>5BAED0690B4D99A5D9E89E562A8B9A2BE342929E</ManifestCertificateThumbprint>
sl@84
    92
  </PropertyGroup>
sl@84
    93
  <PropertyGroup>
sl@84
    94
    <ManifestKeyFile>SharpDisplayManager_TemporaryKey.pfx</ManifestKeyFile>
sl@84
    95
  </PropertyGroup>
sl@84
    96
  <PropertyGroup>
sl@89
    97
    <GenerateManifests>true</GenerateManifests>
sl@84
    98
  </PropertyGroup>
sl@85
    99
  <PropertyGroup>
sl@94
   100
    <ApplicationIcon>Resources\vfd.ico</ApplicationIcon>
sl@85
   101
  </PropertyGroup>
sl@85
   102
  <PropertyGroup>
sl@85
   103
    <StartupObject>SharpDisplayManager.Program</StartupObject>
sl@85
   104
  </PropertyGroup>
StephaneLenclud@172
   105
  <PropertyGroup />
sl@88
   106
  <PropertyGroup>
sl@88
   107
    <TargetZone>LocalIntranet</TargetZone>
sl@88
   108
  </PropertyGroup>
sl@0
   109
  <ItemGroup>
StephaneLenclud@233
   110
    <Reference Include="agsXMPP, Version=1.3.1.0, Culture=neutral, PublicKeyToken=ff839b81f1debe86, processorArchitecture=MSIL">
StephaneLenclud@233
   111
      <HintPath>..\packages\Loamen.agsXMPP.1.3.1\lib\net45\agsXMPP.dll</HintPath>
StephaneLenclud@233
   112
      <Private>True</Private>
StephaneLenclud@233
   113
    </Reference>
StephaneLenclud@272
   114
    <Reference Include="CSCore, Version=1.1.5992.18249, Culture=neutral, PublicKeyToken=5a08f2b6f4415dea, processorArchitecture=MSIL">
StephaneLenclud@272
   115
      <HintPath>..\packages\CSCore.1.1.0\lib\net35-client\CSCore.dll</HintPath>
StephaneLenclud@272
   116
      <Private>True</Private>
StephaneLenclud@272
   117
    </Reference>
StephaneLenclud@233
   118
    <Reference Include="HarmonyHub, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
St?phane@271
   119
      <HintPath>..\packages\SharpLibHarmony.0.7.0\lib\net451\HarmonyHub.dll</HintPath>
StephaneLenclud@233
   120
      <Private>True</Private>
StephaneLenclud@233
   121
    </Reference>
Stephane@161
   122
    <Reference Include="LibCecSharp, Version=2.2.0.0, Culture=neutral, processorArchitecture=x86">
Stephane@161
   123
      <HintPath>.\LibCecSharp.dll</HintPath>
Stephane@161
   124
      <SpecificVersion>False</SpecificVersion>
Stephane@161
   125
    </Reference>
sl@0
   126
    <Reference Include="Microsoft.VisualBasic" />
StephaneLenclud@162
   127
    <Reference Include="MiniDisplayInterop, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
StephaneLenclud@166
   128
      <HintPath>..\packages\LibMiniDisplay.1.1.8\lib\net20\MiniDisplayInterop.dll</HintPath>
StephaneLenclud@135
   129
      <Private>True</Private>
StephaneLenclud@134
   130
    </Reference>
StephaneLenclud@274
   131
    <Reference Include="SharpLibDisplay, Version=0.2.8.30538, Culture=neutral, processorArchitecture=MSIL">
StephaneLenclud@274
   132
      <HintPath>..\packages\SharpLibDisplay.0.2.8\lib\net40\SharpLibDisplay.dll</HintPath>
StephaneLenclud@171
   133
      <Private>True</Private>
StephaneLenclud@171
   134
    </Reference>
StephaneLenclud@183
   135
    <Reference Include="SharpLibHid, Version=1.0.0.0, Culture=neutral, processorArchitecture=x86">
StephaneLenclud@233
   136
      <HintPath>..\packages\SharpLibHid.1.4.2\lib\net40\SharpLibHid.dll</HintPath>
StephaneLenclud@150
   137
      <Private>True</Private>
StephaneLenclud@150
   138
    </Reference>
StephaneLenclud@173
   139
    <Reference Include="SharpLibNotification, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
StephaneLenclud@173
   140
      <HintPath>..\packages\SharpLibNotification.0.0.1\lib\net40\SharpLibNotification.dll</HintPath>
StephaneLenclud@173
   141
      <Private>True</Private>
StephaneLenclud@173
   142
    </Reference>
StephaneLenclud@150
   143
    <Reference Include="SharpLibWin32, Version=1.0.0.0, Culture=neutral, processorArchitecture=x86">
StephaneLenclud@233
   144
      <HintPath>..\packages\SharpLibWin32.0.0.9\lib\net20\SharpLibWin32.dll</HintPath>
StephaneLenclud@233
   145
      <Private>True</Private>
StephaneLenclud@124
   146
    </Reference>
sl@0
   147
    <Reference Include="System" />
sl@48
   148
    <Reference Include="System.Configuration" />
sl@0
   149
    <Reference Include="System.Core" />
sl@46
   150
    <Reference Include="System.Runtime.Serialization" />
sl@92
   151
    <Reference Include="System.Security" />
sl@17
   152
    <Reference Include="System.ServiceModel" />
sl@0
   153
    <Reference Include="System.Xml.Linq" />
sl@0
   154
    <Reference Include="System.Data.DataSetExtensions" />
sl@0
   155
    <Reference Include="Microsoft.CSharp" />
sl@0
   156
    <Reference Include="System.Data" />
sl@0
   157
    <Reference Include="System.Deployment" />
sl@0
   158
    <Reference Include="System.Drawing" />
sl@0
   159
    <Reference Include="System.Windows.Forms" />
sl@0
   160
    <Reference Include="System.Xml" />
sl@46
   161
    <Reference Include="System.Xml.Serialization" />
sl@0
   162
  </ItemGroup>
sl@0
   163
  <ItemGroup>
StephaneLenclud@214
   164
    <Compile Include="Actions\ActionCecClose.cs" />
StephaneLenclud@220
   165
    <Compile Include="Actions\ActionCecDevice.cs" />
StephaneLenclud@222
   166
    <Compile Include="Actions\ActionCecDeviceType.cs" />
StephaneLenclud@214
   167
    <Compile Include="Actions\ActionCecInactiveSource.cs" />
StephaneLenclud@214
   168
    <Compile Include="Actions\ActionCecOpen.cs" />
StephaneLenclud@220
   169
    <Compile Include="Actions\ActionCecDevicePowerOn.cs" />
StephaneLenclud@214
   170
    <Compile Include="Actions\ActionCecActiveSource.cs" />
StephaneLenclud@214
   171
    <Compile Include="Actions\ActionCecScan.cs" />
StephaneLenclud@222
   172
    <Compile Include="Actions\ActionCecUserControlPressed.cs" />
StephaneLenclud@220
   173
    <Compile Include="Actions\ActionCecDeviceStandby.cs" />
StephaneLenclud@222
   174
    <Compile Include="Actions\ActionCecUserControlReleased.cs" />
StephaneLenclud@225
   175
    <Compile Include="Actions\ActionDisplayMessage.cs" />
StephaneLenclud@236
   176
    <Compile Include="Actions\ActionHarmonyCommand.cs" />
StephaneLenclud@277
   177
    <Compile Include="AudioManager.cs" />
StephaneLenclud@273
   178
    <Compile Include="Spectrum\BasicSpectrumProvider.cs" />
sl@0
   179
    <Compile Include="CbtHook.cs" />
StephaneLenclud@167
   180
    <Compile Include="CecClient.cs" />
StephaneLenclud@167
   181
    <Compile Include="ConsumerElectronicControl.cs" />
StephaneLenclud@140
   182
    <Compile Include="ClientData.cs" />
StephaneLenclud@235
   183
    <Compile Include="EarManager.cs" />
StephaneLenclud@273
   184
    <Compile Include="Spectrum\ISpectrumProvider.cs" />
StephaneLenclud@273
   185
    <Compile Include="Spectrum\LineSpectrum.cs" />
StephaneLenclud@273
   186
    <Compile Include="Spectrum\ScalingStrategy.cs" />
StephaneLenclud@268
   187
    <Compile Include="Secure.cs" />
StephaneLenclud@244
   188
    <Compile Include="Events\EventHid.cs" />
StephaneLenclud@231
   189
    <Compile Include="FormEditObject.cs">
StephaneLenclud@219
   190
      <SubType>Form</SubType>
StephaneLenclud@219
   191
    </Compile>
StephaneLenclud@231
   192
    <Compile Include="FormEditObject.Designer.cs">
StephaneLenclud@231
   193
      <DependentUpon>FormEditObject.cs</DependentUpon>
StephaneLenclud@211
   194
    </Compile>
StephaneLenclud@226
   195
    <Compile Include="FormMain.cs">
StephaneLenclud@226
   196
      <SubType>Form</SubType>
StephaneLenclud@226
   197
    </Compile>
StephaneLenclud@226
   198
    <Compile Include="FormMain.Designer.cs">
StephaneLenclud@226
   199
      <DependentUpon>FormMain.cs</DependentUpon>
StephaneLenclud@226
   200
    </Compile>
StephaneLenclud@226
   201
    <Compile Include="FormMain.Hid.cs" />
StephaneLenclud@250
   202
    <Compile Include="FormSelectHarmonyCommand.cs">
StephaneLenclud@250
   203
      <SubType>Form</SubType>
StephaneLenclud@250
   204
    </Compile>
StephaneLenclud@250
   205
    <Compile Include="FormSelectHarmonyCommand.Designer.cs">
StephaneLenclud@250
   206
      <DependentUpon>FormSelectHarmonyCommand.cs</DependentUpon>
StephaneLenclud@250
   207
    </Compile>
StephaneLenclud@198
   208
    <Compile Include="FxControl.cs">
StephaneLenclud@198
   209
      <SubType>UserControl</SubType>
StephaneLenclud@198
   210
    </Compile>
StephaneLenclud@198
   211
    <Compile Include="FxControl.Designer.cs">
StephaneLenclud@198
   212
      <DependentUpon>FxControl.cs</DependentUpon>
StephaneLenclud@198
   213
    </Compile>
StephaneLenclud@219
   214
    <Compile Include="ItemActionType.cs" />
StephaneLenclud@117
   215
    <Compile Include="NetworkManager.cs" />
sl@0
   216
    <Compile Include="DialogBox.cs" />
sl@3
   217
    <Compile Include="Display.cs" />
sl@48
   218
    <Compile Include="DisplaySettings.cs" />
sl@16
   219
    <Compile Include="MarqueeLabel.cs" />
sl@0
   220
    <Compile Include="Program.cs" />
sl@91
   221
    <Compile Include="ProgressForm.cs">
sl@91
   222
      <SubType>Form</SubType>
sl@91
   223
    </Compile>
sl@91
   224
    <Compile Include="ProgressForm.Designer.cs">
sl@91
   225
      <DependentUpon>ProgressForm.cs</DependentUpon>
sl@91
   226
    </Compile>
sl@0
   227
    <Compile Include="Properties\AssemblyInfo.cs" />
StephaneLenclud@253
   228
    <Compile Include="RichTextBoxTraceListener.cs" />
sl@56
   229
    <Compile Include="Session.cs" />
sl@46
   230
    <Compile Include="Settings.cs" />
StephaneLenclud@273
   231
    <Compile Include="Spectrum\SpectrumBase.cs" />
sl@92
   232
    <Compile Include="StartupManager.cs" />
sl@92
   233
    <Compile Include="TaskScheduler.cs" />
sl@0
   234
    <Compile Include="Win32API.cs" />
sl@0
   235
    <Compile Include="WindowsHook.cs" />
sl@0
   236
    <Compile Include="WndProcRetHook.cs" />
StephaneLenclud@231
   237
    <EmbeddedResource Include="FormEditObject.resx">
StephaneLenclud@231
   238
      <DependentUpon>FormEditObject.cs</DependentUpon>
StephaneLenclud@211
   239
    </EmbeddedResource>
StephaneLenclud@226
   240
    <EmbeddedResource Include="FormMain.resx">
StephaneLenclud@226
   241
      <DependentUpon>FormMain.cs</DependentUpon>
StephaneLenclud@226
   242
    </EmbeddedResource>
StephaneLenclud@250
   243
    <EmbeddedResource Include="FormSelectHarmonyCommand.resx">
StephaneLenclud@250
   244
      <DependentUpon>FormSelectHarmonyCommand.cs</DependentUpon>
StephaneLenclud@250
   245
    </EmbeddedResource>
StephaneLenclud@198
   246
    <EmbeddedResource Include="FxControl.resx">
StephaneLenclud@198
   247
      <DependentUpon>FxControl.cs</DependentUpon>
StephaneLenclud@198
   248
    </EmbeddedResource>
sl@91
   249
    <EmbeddedResource Include="ProgressForm.resx">
sl@91
   250
      <DependentUpon>ProgressForm.cs</DependentUpon>
sl@91
   251
    </EmbeddedResource>
sl@0
   252
    <EmbeddedResource Include="Properties\Resources.resx">
sl@0
   253
      <Generator>ResXFileCodeGenerator</Generator>
sl@0
   254
      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
sl@0
   255
      <SubType>Designer</SubType>
sl@0
   256
    </EmbeddedResource>
sl@0
   257
    <Compile Include="Properties\Resources.Designer.cs">
sl@0
   258
      <AutoGen>True</AutoGen>
sl@0
   259
      <DependentUpon>Resources.resx</DependentUpon>
sl@43
   260
      <DesignTime>True</DesignTime>
sl@0
   261
    </Compile>
Stephane@212
   262
    <None Include="App.config">
Stephane@212
   263
      <SubType>Designer</SubType>
Stephane@212
   264
    </None>
StephaneLenclud@172
   265
    <None Include="app.manifest" />
StephaneLenclud@112
   266
    <None Include="packages.config" />
sl@0
   267
    <None Include="Properties\Settings.settings">
sl@0
   268
      <Generator>SettingsSingleFileGenerator</Generator>
sl@0
   269
      <LastGenOutput>Settings.Designer.cs</LastGenOutput>
StephaneLenclud@235
   270
      <SubType>Designer</SubType>
sl@0
   271
    </None>
sl@0
   272
    <Compile Include="Properties\Settings.Designer.cs">
sl@0
   273
      <AutoGen>True</AutoGen>
sl@0
   274
      <DependentUpon>Settings.settings</DependentUpon>
sl@0
   275
      <DesignTimeSharedInput>True</DesignTimeSharedInput>
sl@0
   276
    </Compile>
StephaneLenclud@127
   277
    <None Include="Resources\Windows-Media-Center-icon-32.png" />
sl@84
   278
    <None Include="SharpDisplayManager_TemporaryKey.pfx" />
sl@0
   279
  </ItemGroup>
sl@0
   280
  <ItemGroup>
StephaneLenclud@191
   281
    <ProjectReference Include="..\Clients\Idle\SharpDisplayClientIdle.csproj">
StephaneLenclud@189
   282
      <Project>{a76579e5-aa8d-45a3-99e1-239a5c030a78}</Project>
StephaneLenclud@191
   283
      <Name>SharpDisplayClientIdle</Name>
StephaneLenclud@189
   284
    </ProjectReference>
StephaneLenclud@225
   285
    <ProjectReference Include="..\Clients\Message\SharpDisplayClientMessage.csproj">
StephaneLenclud@225
   286
      <Project>{d9aad299-e97f-47e0-8e92-110f49f2b89c}</Project>
StephaneLenclud@225
   287
      <Name>SharpDisplayClientMessage</Name>
StephaneLenclud@225
   288
    </ProjectReference>
StephaneLenclud@191
   289
    <ProjectReference Include="..\Clients\Test\SharpDisplayClientTest.csproj">
sl@25
   290
      <Project>{7ee64074-8cdb-4448-b40c-81b75d6b31cd}</Project>
StephaneLenclud@191
   291
      <Name>SharpDisplayClientTest</Name>
sl@25
   292
    </ProjectReference>
StephaneLenclud@159
   293
    <ProjectReference Include="..\PowerManager\PowerManager.vcxproj">
StephaneLenclud@159
   294
      <Project>{c174f23d-3055-49bc-b6b0-563011af624d}</Project>
StephaneLenclud@159
   295
      <Name>PowerManager</Name>
StephaneLenclud@159
   296
    </ProjectReference>
StephaneLenclud@210
   297
    <ProjectReference Include="..\SharpLibEar\SharpLibEar.csproj">
StephaneLenclud@210
   298
      <Project>{84a9ed37-e6ea-4cbd-b995-b713f46eaab0}</Project>
StephaneLenclud@210
   299
      <Name>SharpLibEar</Name>
StephaneLenclud@210
   300
    </ProjectReference>
StephaneLenclud@210
   301
    <ProjectReference Include="..\SharpLibUtils\SharpLibUtils.csproj">
StephaneLenclud@210
   302
      <Project>{ae897704-461d-4018-8336-2517988bf7ad}</Project>
StephaneLenclud@210
   303
      <Name>SharpLibUtils</Name>
StephaneLenclud@210
   304
    </ProjectReference>
sl@22
   305
  </ItemGroup>
sl@43
   306
  <ItemGroup>
StephaneLenclud@250
   307
    <BootstrapperPackage Include=".NETFramework,Version=v4.6">
sl@43
   308
      <Visible>False</Visible>
StephaneLenclud@250
   309
      <ProductName>Microsoft .NET Framework 4.6 %28x86 and x64%29</ProductName>
sl@43
   310
      <Install>true</Install>
sl@43
   311
    </BootstrapperPackage>
sl@43
   312
    <BootstrapperPackage Include="Microsoft.Net.Client.3.5">
sl@43
   313
      <Visible>False</Visible>
sl@43
   314
      <ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
sl@43
   315
      <Install>false</Install>
sl@43
   316
    </BootstrapperPackage>
sl@43
   317
    <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
sl@43
   318
      <Visible>False</Visible>
sl@43
   319
      <ProductName>.NET Framework 3.5 SP1</ProductName>
sl@43
   320
      <Install>false</Install>
sl@43
   321
    </BootstrapperPackage>
StephaneLenclud@199
   322
    <BootstrapperPackage Include="Microsoft.Visual.C++.14.0.x86">
StephaneLenclud@199
   323
      <Visible>False</Visible>
StephaneLenclud@199
   324
      <ProductName>Visual C++ "14" Runtime Libraries %28x86%29</ProductName>
StephaneLenclud@199
   325
      <Install>true</Install>
StephaneLenclud@199
   326
    </BootstrapperPackage>
sl@43
   327
    <BootstrapperPackage Include="Microsoft.Windows.Installer.4.5">
sl@43
   328
      <Visible>False</Visible>
sl@43
   329
      <ProductName>Windows Installer 4.5</ProductName>
sl@43
   330
      <Install>true</Install>
sl@43
   331
    </BootstrapperPackage>
sl@43
   332
  </ItemGroup>
sl@84
   333
  <ItemGroup>
sl@94
   334
    <EmbeddedResource Include="Resources\vfd.ico" />
sl@84
   335
  </ItemGroup>
StephaneLenclud@117
   336
  <ItemGroup>
StephaneLenclud@117
   337
    <COMReference Include="NETWORKLIST">
StephaneLenclud@117
   338
      <Guid>{DCB00D01-570F-4A9B-8D69-199FDBA5723B}</Guid>
StephaneLenclud@117
   339
      <VersionMajor>1</VersionMajor>
StephaneLenclud@117
   340
      <VersionMinor>0</VersionMinor>
StephaneLenclud@117
   341
      <Lcid>0</Lcid>
StephaneLenclud@117
   342
      <WrapperTool>tlbimp</WrapperTool>
StephaneLenclud@117
   343
      <Isolated>False</Isolated>
StephaneLenclud@117
   344
      <EmbedInteropTypes>True</EmbedInteropTypes>
StephaneLenclud@117
   345
    </COMReference>
StephaneLenclud@126
   346
    <COMReference Include="Shell32">
StephaneLenclud@126
   347
      <Guid>{50A7E9B0-70EF-11D1-B75A-00A0C90564FE}</Guid>
StephaneLenclud@126
   348
      <VersionMajor>1</VersionMajor>
StephaneLenclud@126
   349
      <VersionMinor>0</VersionMinor>
StephaneLenclud@126
   350
      <Lcid>0</Lcid>
StephaneLenclud@126
   351
      <WrapperTool>tlbimp</WrapperTool>
StephaneLenclud@126
   352
      <Isolated>False</Isolated>
StephaneLenclud@126
   353
      <EmbedInteropTypes>True</EmbedInteropTypes>
StephaneLenclud@126
   354
    </COMReference>
StephaneLenclud@117
   355
  </ItemGroup>
StephaneLenclud@144
   356
  <ItemGroup>
StephaneLenclud@164
   357
    <Content Include="..\bin\x86\Release\MiniDisplay.dll">
StephaneLenclud@164
   358
      <Link>MiniDisplay.dll</Link>
StephaneLenclud@164
   359
    </Content>
Stephane@200
   360
    <Content Include="cec.dll">
Stephane@161
   361
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
Stephane@161
   362
    </Content>
StephaneLenclud@179
   363
    <EmbeddedResource Include="Resources\record.ico" />
StephaneLenclud@146
   364
  </ItemGroup>
StephaneLenclud@209
   365
  <ItemGroup />
sl@0
   366
  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
StephaneLenclud@166
   367
  <Import Project="..\packages\LibMiniDisplay.1.1.8\build\LibMiniDisplay.targets" Condition="Exists('..\packages\LibMiniDisplay.1.1.8\build\LibMiniDisplay.targets')" />
StephaneLenclud@134
   368
  <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
StephaneLenclud@134
   369
    <PropertyGroup>
StephaneLenclud@162
   370
      <ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them.  For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
StephaneLenclud@134
   371
    </PropertyGroup>
StephaneLenclud@166
   372
    <Error Condition="!Exists('..\packages\LibMiniDisplay.1.1.8\build\LibMiniDisplay.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\LibMiniDisplay.1.1.8\build\LibMiniDisplay.targets'))" />
StephaneLenclud@134
   373
  </Target>
sl@0
   374
  <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
sl@0
   375
       Other similar extension points exist, see Microsoft.Common.targets.
sl@0
   376
  <Target Name="BeforeBuild">
sl@0
   377
  </Target>
sl@0
   378
  <Target Name="AfterBuild">
sl@0
   379
  </Target>
sl@0
   380
  -->
sl@0
   381
</Project>