2020-04-13 03:47:38 +00:00
|
|
|
|
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
2017-02-26 19:23:31 +00:00
|
|
|
|
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
2020-04-13 03:47:38 +00:00
|
|
|
|
<!--<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets"/>-->
|
2017-02-26 19:23:31 +00:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
|
|
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|
|
|
|
<ProjectGuid>{608D941A-B431-400C-A91D-C6F971C29577}</ProjectGuid>
|
|
|
|
|
<OutputType>WinExe</OutputType>
|
|
|
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
2020-04-23 08:16:16 +00:00
|
|
|
|
<RootNamespace>HeliosPlus</RootNamespace>
|
2020-04-22 11:46:31 +00:00
|
|
|
|
<AssemblyName>HeliosPlus</AssemblyName>
|
2020-04-13 03:47:38 +00:00
|
|
|
|
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
|
2017-02-26 19:23:31 +00:00
|
|
|
|
<FileAlignment>512</FileAlignment>
|
|
|
|
|
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
2020-04-13 03:47:38 +00:00
|
|
|
|
<IsWebBootstrapper>false</IsWebBootstrapper>
|
|
|
|
|
<TargetFrameworkProfile />
|
2017-02-26 19:23:31 +00:00
|
|
|
|
<PublishUrl>publish\</PublishUrl>
|
|
|
|
|
<Install>true</Install>
|
|
|
|
|
<InstallFrom>Disk</InstallFrom>
|
|
|
|
|
<UpdateEnabled>false</UpdateEnabled>
|
|
|
|
|
<UpdateMode>Foreground</UpdateMode>
|
|
|
|
|
<UpdateInterval>7</UpdateInterval>
|
|
|
|
|
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
|
|
|
|
|
<UpdatePeriodically>false</UpdatePeriodically>
|
|
|
|
|
<UpdateRequired>false</UpdateRequired>
|
|
|
|
|
<MapFileExtensions>true</MapFileExtensions>
|
|
|
|
|
<ApplicationRevision>0</ApplicationRevision>
|
|
|
|
|
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
|
|
|
|
|
<UseApplicationTrust>false</UseApplicationTrust>
|
|
|
|
|
<BootstrapperEnabled>true</BootstrapperEnabled>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
|
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
|
|
|
<DebugSymbols>true</DebugSymbols>
|
|
|
|
|
<DebugType>full</DebugType>
|
|
|
|
|
<Optimize>false</Optimize>
|
2017-08-10 14:16:01 +00:00
|
|
|
|
<OutputPath>..\Debug\</OutputPath>
|
2017-02-26 19:23:31 +00:00
|
|
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
|
|
|
|
<Prefer32Bit>false</Prefer32Bit>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
|
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
|
|
|
<DebugType>pdbonly</DebugType>
|
|
|
|
|
<Optimize>true</Optimize>
|
2017-08-10 14:16:01 +00:00
|
|
|
|
<OutputPath>..\Release\</OutputPath>
|
2017-02-26 19:23:31 +00:00
|
|
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
|
|
|
|
<Prefer32Bit>false</Prefer32Bit>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<ApplicationIcon>Icon.ico</ApplicationIcon>
|
|
|
|
|
</PropertyGroup>
|
2020-04-13 03:47:38 +00:00
|
|
|
|
<PropertyGroup>
|
2020-04-23 08:16:16 +00:00
|
|
|
|
<StartupObject>HeliosPlus.Program</StartupObject>
|
2020-04-13 03:47:38 +00:00
|
|
|
|
</PropertyGroup>
|
2017-02-26 19:23:31 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Reference Include="Microsoft.CSharp" />
|
|
|
|
|
<Reference Include="System" />
|
|
|
|
|
<Reference Include="System.Core" />
|
|
|
|
|
<Reference Include="System.Drawing" />
|
|
|
|
|
<Reference Include="System.ServiceModel" />
|
|
|
|
|
<Reference Include="System.Windows.Forms" />
|
|
|
|
|
<Reference Include="System.XML" />
|
|
|
|
|
<Reference Include="System.Xml.Linq" />
|
|
|
|
|
<Reference Include="System.Xml.Serialization" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2020-04-19 05:37:29 +00:00
|
|
|
|
<Compile Include="Validators.cs" />
|
2017-02-26 19:23:31 +00:00
|
|
|
|
<Compile Include="DisplayRepresentation.cs" />
|
|
|
|
|
<Compile Include="InterProcess\IPCClient.cs" />
|
|
|
|
|
<Compile Include="InterProcess\InstanceStatus.cs" />
|
|
|
|
|
<Compile Include="InterProcess\IService.cs" />
|
|
|
|
|
<Compile Include="InterProcess\IPCService.cs" />
|
|
|
|
|
<Compile Include="Resources\Language.Designer.cs">
|
|
|
|
|
<AutoGen>True</AutoGen>
|
|
|
|
|
<DesignTime>True</DesignTime>
|
|
|
|
|
<DependentUpon>Language.resx</DependentUpon>
|
|
|
|
|
</Compile>
|
2020-04-14 10:18:52 +00:00
|
|
|
|
<Compile Include="Uplay\UplayAppIdNamePair.cs" />
|
|
|
|
|
<Compile Include="Uplay\UplayGame.cs" />
|
2017-02-26 19:23:31 +00:00
|
|
|
|
<Compile Include="Steam\SteamGame.cs" />
|
|
|
|
|
<Compile Include="Steam\SteamAppIdNamePair.cs" />
|
|
|
|
|
<Compile Include="UIForms\EditForm.cs">
|
|
|
|
|
<SubType>Form</SubType>
|
|
|
|
|
</Compile>
|
|
|
|
|
<Compile Include="UIForms\EditForm.Designer.cs">
|
|
|
|
|
<DependentUpon>EditForm.cs</DependentUpon>
|
|
|
|
|
</Compile>
|
|
|
|
|
<Compile Include="UIForms\ShortcutForm.cs">
|
|
|
|
|
<SubType>Form</SubType>
|
|
|
|
|
</Compile>
|
|
|
|
|
<Compile Include="UIForms\ShortcutForm.Designer.cs">
|
|
|
|
|
<DependentUpon>ShortcutForm.cs</DependentUpon>
|
|
|
|
|
</Compile>
|
|
|
|
|
<Compile Include="UIForms\SplashForm.cs">
|
|
|
|
|
<SubType>Form</SubType>
|
|
|
|
|
</Compile>
|
|
|
|
|
<Compile Include="UIForms\SplashForm.Designer.cs">
|
|
|
|
|
<DependentUpon>SplashForm.cs</DependentUpon>
|
|
|
|
|
</Compile>
|
|
|
|
|
<Compile Include="UIForms\SteamGamesForm.cs">
|
|
|
|
|
<SubType>Form</SubType>
|
|
|
|
|
</Compile>
|
|
|
|
|
<Compile Include="UIForms\SteamGamesForm.Designer.cs">
|
|
|
|
|
<DependentUpon>SteamGamesForm.cs</DependentUpon>
|
|
|
|
|
</Compile>
|
|
|
|
|
<Compile Include="UIForms\MainForm.cs">
|
|
|
|
|
<SubType>Form</SubType>
|
|
|
|
|
</Compile>
|
|
|
|
|
<Compile Include="UIForms\MainForm.Designer.cs">
|
|
|
|
|
<DependentUpon>MainForm.cs</DependentUpon>
|
|
|
|
|
</Compile>
|
|
|
|
|
<Compile Include="Program.cs" />
|
|
|
|
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
2020-04-13 03:47:38 +00:00
|
|
|
|
<Compile Include="Properties\Resources.Designer.cs">
|
|
|
|
|
<AutoGen>True</AutoGen>
|
|
|
|
|
<DependentUpon>Resources.resx</DependentUpon>
|
|
|
|
|
<DesignTime>True</DesignTime>
|
|
|
|
|
</Compile>
|
2017-02-26 19:23:31 +00:00
|
|
|
|
<EmbeddedResource Include="Resources\Language.resx">
|
|
|
|
|
<Generator>ResXFileCodeGenerator</Generator>
|
|
|
|
|
<LastGenOutput>Language.Designer.cs</LastGenOutput>
|
|
|
|
|
<SubType>Designer</SubType>
|
|
|
|
|
</EmbeddedResource>
|
|
|
|
|
<EmbeddedResource Include="UIForms\ShortcutForm.resx">
|
|
|
|
|
<DependentUpon>ShortcutForm.cs</DependentUpon>
|
|
|
|
|
</EmbeddedResource>
|
|
|
|
|
<EmbeddedResource Include="UIForms\SteamGamesForm.resx">
|
|
|
|
|
<DependentUpon>SteamGamesForm.cs</DependentUpon>
|
|
|
|
|
</EmbeddedResource>
|
|
|
|
|
<EmbeddedResource Include="UIForms\EditForm.resx">
|
|
|
|
|
<DependentUpon>EditForm.cs</DependentUpon>
|
|
|
|
|
</EmbeddedResource>
|
|
|
|
|
<EmbeddedResource Include="UIForms\MainForm.resx">
|
|
|
|
|
<DependentUpon>MainForm.cs</DependentUpon>
|
|
|
|
|
</EmbeddedResource>
|
|
|
|
|
<EmbeddedResource Include="Properties\Resources.resx">
|
|
|
|
|
<Generator>ResXFileCodeGenerator</Generator>
|
|
|
|
|
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
|
|
|
|
<SubType>Designer</SubType>
|
|
|
|
|
</EmbeddedResource>
|
|
|
|
|
<EmbeddedResource Include="UIForms\SplashForm.resx">
|
|
|
|
|
<DependentUpon>SplashForm.cs</DependentUpon>
|
|
|
|
|
</EmbeddedResource>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Include="App.config" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2020-04-13 03:47:38 +00:00
|
|
|
|
<BootstrapperPackage Include=".NETFramework,Version=v4.8">
|
2017-02-26 19:23:31 +00:00
|
|
|
|
<Visible>False</Visible>
|
2020-04-13 03:47:38 +00:00
|
|
|
|
<ProductName>Microsoft .NET Framework 4.8 %28x86 and x64%29</ProductName>
|
2017-02-26 19:23:31 +00:00
|
|
|
|
<Install>true</Install>
|
|
|
|
|
</BootstrapperPackage>
|
|
|
|
|
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
|
|
|
|
|
<Visible>False</Visible>
|
|
|
|
|
<ProductName>.NET Framework 3.5 SP1</ProductName>
|
|
|
|
|
<Install>false</Install>
|
|
|
|
|
</BootstrapperPackage>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Include="Icon.ico" />
|
|
|
|
|
<None Include="Icon.png" />
|
|
|
|
|
<None Include="Icon.psd" />
|
|
|
|
|
</ItemGroup>
|
2020-04-13 03:47:38 +00:00
|
|
|
|
<ItemGroup>
|
2020-04-22 11:46:31 +00:00
|
|
|
|
<None Include="Properties\DataSources\HeliosDisplayManagement.UIForms.ShortcutForm.datasource" />
|
2020-04-13 03:47:38 +00:00
|
|
|
|
<None Include="Resources\SteamIcon.png" />
|
|
|
|
|
</ItemGroup>
|
2017-02-26 19:23:31 +00:00
|
|
|
|
<ItemGroup>
|
2020-04-23 08:16:16 +00:00
|
|
|
|
<ProjectReference Include="..\HeliosDisplayManagement.Shared\HeliosPlus.Shared.csproj">
|
2017-02-26 19:23:31 +00:00
|
|
|
|
<Project>{1cacda43-01c7-4cd4-bf6e-9421a29510fc}</Project>
|
2020-04-23 08:16:16 +00:00
|
|
|
|
<Name>HeliosPlus.Shared</Name>
|
2017-02-26 19:23:31 +00:00
|
|
|
|
</ProjectReference>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2020-04-13 03:47:38 +00:00
|
|
|
|
<PackageReference Include="CircularProgressBar">
|
|
|
|
|
<Version>2.7.0.7</Version>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="HtmlAgilityPack">
|
|
|
|
|
<Version>1.11.23</Version>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="IconLib.Unofficial">
|
|
|
|
|
<Version>0.73.0</Version>
|
|
|
|
|
</PackageReference>
|
2020-04-19 05:37:29 +00:00
|
|
|
|
<PackageReference Include="McMaster.Extensions.CommandLineUtils">
|
|
|
|
|
<Version>3.0.0</Version>
|
|
|
|
|
</PackageReference>
|
2020-04-13 03:47:38 +00:00
|
|
|
|
<PackageReference Include="Newtonsoft.Json">
|
|
|
|
|
<Version>12.0.3</Version>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="WindowsDisplayAPI">
|
|
|
|
|
<Version>1.3.0.13</Version>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="WinFormAnimation">
|
|
|
|
|
<Version>1.6.0.4</Version>
|
|
|
|
|
</PackageReference>
|
2017-02-26 19:23:31 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
|
|
|
|
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
|
|
|
|
Other similar extension points exist, see Microsoft.Common.targets.
|
|
|
|
|
<Target Name="BeforeBuild">
|
|
|
|
|
</Target>
|
|
|
|
|
<Target Name="AfterBuild">
|
2020-04-13 03:47:38 +00:00
|
|
|
|
</Target>-->
|
2017-02-26 19:23:31 +00:00
|
|
|
|
</Project>
|