2020-03-27 23:16:34 +00:00
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
|
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
|
|
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|
|
|
|
<ProjectGuid>{66C1C75C-3612-4D23-B937-C3DE0D653292}</ProjectGuid>
|
|
|
|
|
<OutputType>WinExe</OutputType>
|
|
|
|
|
<RootNamespace>AppLauncher</RootNamespace>
|
2020-05-18 23:17:22 +00:00
|
|
|
|
<AssemblyName>fizzylauncher</AssemblyName>
|
2020-03-27 23:16:34 +00:00
|
|
|
|
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
|
|
|
|
|
<FileAlignment>512</FileAlignment>
|
|
|
|
|
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
|
|
|
|
<Deterministic>true</Deterministic>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
|
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
|
|
|
<DebugSymbols>true</DebugSymbols>
|
|
|
|
|
<DebugType>full</DebugType>
|
|
|
|
|
<Optimize>false</Optimize>
|
|
|
|
|
<OutputPath>bin\Debug\</OutputPath>
|
|
|
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
2020-05-20 22:46:36 +00:00
|
|
|
|
<Prefer32Bit>false</Prefer32Bit>
|
2020-03-27 23:16:34 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
|
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
2020-05-20 22:46:36 +00:00
|
|
|
|
<DebugType>none</DebugType>
|
2020-03-27 23:16:34 +00:00
|
|
|
|
<Optimize>true</Optimize>
|
|
|
|
|
<OutputPath>bin\Release\</OutputPath>
|
|
|
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
2020-05-20 22:46:36 +00:00
|
|
|
|
<Prefer32Bit>false</Prefer32Bit>
|
2020-03-27 23:16:34 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<NoWin32Manifest>true</NoWin32Manifest>
|
|
|
|
|
</PropertyGroup>
|
2020-05-17 11:28:21 +00:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<ApplicationIcon>favicon.ico</ApplicationIcon>
|
|
|
|
|
</PropertyGroup>
|
2020-03-27 23:16:34 +00:00
|
|
|
|
<ItemGroup>
|
2020-04-11 17:43:20 +00:00
|
|
|
|
<Reference Include="Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
|
|
|
|
|
<HintPath>packages\Newtonsoft.Json.12.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
|
|
|
|
|
</Reference>
|
2020-03-27 23:16:34 +00:00
|
|
|
|
<Reference Include="System" />
|
|
|
|
|
<Reference Include="System.Core" />
|
|
|
|
|
<Reference Include="System.Xml.Linq" />
|
|
|
|
|
<Reference Include="System.Data.DataSetExtensions" />
|
|
|
|
|
<Reference Include="Microsoft.CSharp" />
|
|
|
|
|
<Reference Include="System.Data" />
|
|
|
|
|
<Reference Include="System.Deployment" />
|
|
|
|
|
<Reference Include="System.Drawing" />
|
|
|
|
|
<Reference Include="System.Net.Http" />
|
|
|
|
|
<Reference Include="System.Windows.Forms" />
|
|
|
|
|
<Reference Include="System.Xml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2020-05-17 18:52:37 +00:00
|
|
|
|
<Compile Include="Models\LauncherSession.cs" />
|
2020-04-11 17:43:20 +00:00
|
|
|
|
<Compile Include="Models\TileModel.cs" />
|
2020-03-27 23:16:34 +00:00
|
|
|
|
<Compile Include="MainForm.cs">
|
|
|
|
|
<SubType>Form</SubType>
|
|
|
|
|
</Compile>
|
|
|
|
|
<Compile Include="MainForm.Designer.cs">
|
|
|
|
|
<DependentUpon>MainForm.cs</DependentUpon>
|
|
|
|
|
</Compile>
|
2020-04-11 17:43:20 +00:00
|
|
|
|
<Compile Include="Models\TileGroupModel.cs" />
|
2020-03-27 23:16:34 +00:00
|
|
|
|
<Compile Include="Program.cs" />
|
|
|
|
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
2020-03-31 19:53:50 +00:00
|
|
|
|
<Compile Include="Properties\Resources.Designer.cs">
|
|
|
|
|
<AutoGen>True</AutoGen>
|
|
|
|
|
<DesignTime>True</DesignTime>
|
|
|
|
|
<DependentUpon>Resources.resx</DependentUpon>
|
|
|
|
|
</Compile>
|
2020-05-03 14:53:15 +00:00
|
|
|
|
<Compile Include="Windows\Forms\Tile\AddTileForm.cs">
|
2020-05-02 16:17:10 +00:00
|
|
|
|
<SubType>Form</SubType>
|
|
|
|
|
</Compile>
|
2020-05-03 21:58:49 +00:00
|
|
|
|
<Compile Include="Windows\Forms\Tile\EditGroupForm.cs">
|
|
|
|
|
<SubType>Form</SubType>
|
|
|
|
|
</Compile>
|
2020-05-17 02:24:46 +00:00
|
|
|
|
<Compile Include="Windows\Forms\Tile\AddListTileForm.cs">
|
|
|
|
|
<SubType>Form</SubType>
|
|
|
|
|
</Compile>
|
2020-05-10 10:03:55 +00:00
|
|
|
|
<Compile Include="Windows\Forms\Tile\EditListTileForm.cs">
|
|
|
|
|
<SubType>Form</SubType>
|
|
|
|
|
</Compile>
|
2020-05-18 23:17:22 +00:00
|
|
|
|
<Compile Include="Windows\Forms\OptionsForm.cs">
|
|
|
|
|
<SubType>Form</SubType>
|
|
|
|
|
</Compile>
|
2020-05-03 14:53:15 +00:00
|
|
|
|
<Compile Include="Windows\Forms\Tile\EditTileForm.cs">
|
2020-04-27 12:17:13 +00:00
|
|
|
|
<SubType>Form</SubType>
|
|
|
|
|
</Compile>
|
2020-05-16 12:25:59 +00:00
|
|
|
|
<Compile Include="Windows\Forms\Tile\TTilePanelLayout.cs">
|
2020-04-05 00:32:49 +00:00
|
|
|
|
<SubType>UserControl</SubType>
|
|
|
|
|
</Compile>
|
2020-05-16 12:25:59 +00:00
|
|
|
|
<Compile Include="Windows\Forms\Tile\TTilePanelLayout.Designer.cs">
|
|
|
|
|
<DependentUpon>TTilePanelLayout.cs</DependentUpon>
|
2020-04-11 17:43:20 +00:00
|
|
|
|
</Compile>
|
2020-05-16 12:25:59 +00:00
|
|
|
|
<Compile Include="Windows\Forms\Tile\TTilePanel.cs">
|
2020-03-30 10:48:24 +00:00
|
|
|
|
<SubType>UserControl</SubType>
|
|
|
|
|
</Compile>
|
2020-05-16 12:25:59 +00:00
|
|
|
|
<Compile Include="Windows\Forms\Tile\TTilePanel.Designer.cs">
|
|
|
|
|
<DependentUpon>TTilePanel.cs</DependentUpon>
|
2020-03-30 10:48:24 +00:00
|
|
|
|
</Compile>
|
2020-03-27 23:16:34 +00:00
|
|
|
|
<EmbeddedResource Include="MainForm.resx">
|
|
|
|
|
<DependentUpon>MainForm.cs</DependentUpon>
|
|
|
|
|
</EmbeddedResource>
|
|
|
|
|
<EmbeddedResource Include="Properties\Resources.resx">
|
|
|
|
|
<Generator>ResXFileCodeGenerator</Generator>
|
|
|
|
|
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
|
|
|
|
</EmbeddedResource>
|
2020-05-03 14:53:15 +00:00
|
|
|
|
<EmbeddedResource Include="Windows\Forms\Tile\AddTileForm.resx">
|
2020-05-02 16:17:10 +00:00
|
|
|
|
<DependentUpon>AddTileForm.cs</DependentUpon>
|
|
|
|
|
</EmbeddedResource>
|
2020-05-03 21:58:49 +00:00
|
|
|
|
<EmbeddedResource Include="Windows\Forms\Tile\EditGroupForm.resx">
|
|
|
|
|
<DependentUpon>EditGroupForm.cs</DependentUpon>
|
|
|
|
|
</EmbeddedResource>
|
2020-05-17 02:24:46 +00:00
|
|
|
|
<EmbeddedResource Include="Windows\Forms\Tile\AddListTileForm.resx">
|
|
|
|
|
<DependentUpon>AddListTileForm.cs</DependentUpon>
|
|
|
|
|
</EmbeddedResource>
|
2020-05-10 10:03:55 +00:00
|
|
|
|
<EmbeddedResource Include="Windows\Forms\Tile\EditListTileForm.resx">
|
|
|
|
|
<DependentUpon>EditListTileForm.cs</DependentUpon>
|
|
|
|
|
</EmbeddedResource>
|
2020-05-18 23:17:22 +00:00
|
|
|
|
<EmbeddedResource Include="Windows\Forms\OptionsForm.resx">
|
|
|
|
|
<DependentUpon>OptionsForm.cs</DependentUpon>
|
|
|
|
|
</EmbeddedResource>
|
2020-05-03 14:53:15 +00:00
|
|
|
|
<EmbeddedResource Include="Windows\Forms\Tile\EditTileForm.resx">
|
2020-04-27 12:17:13 +00:00
|
|
|
|
<DependentUpon>EditTileForm.cs</DependentUpon>
|
|
|
|
|
</EmbeddedResource>
|
2020-05-16 12:25:59 +00:00
|
|
|
|
<EmbeddedResource Include="Windows\Forms\Tile\TTilePanelLayout.resx">
|
|
|
|
|
<DependentUpon>TTilePanelLayout.cs</DependentUpon>
|
2020-04-11 17:43:20 +00:00
|
|
|
|
</EmbeddedResource>
|
2020-05-16 12:25:59 +00:00
|
|
|
|
<EmbeddedResource Include="Windows\Forms\Tile\TTilePanel.resx">
|
|
|
|
|
<DependentUpon>TTilePanel.cs</DependentUpon>
|
2020-03-30 10:48:24 +00:00
|
|
|
|
</EmbeddedResource>
|
2020-04-11 17:43:20 +00:00
|
|
|
|
<None Include="packages.config" />
|
2020-03-27 23:16:34 +00:00
|
|
|
|
<None Include="Properties\Settings.settings">
|
|
|
|
|
<Generator>SettingsSingleFileGenerator</Generator>
|
|
|
|
|
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
|
|
|
|
|
</None>
|
|
|
|
|
<Compile Include="Properties\Settings.Designer.cs">
|
|
|
|
|
<AutoGen>True</AutoGen>
|
|
|
|
|
<DependentUpon>Settings.settings</DependentUpon>
|
|
|
|
|
<DesignTimeSharedInput>True</DesignTimeSharedInput>
|
|
|
|
|
</Compile>
|
|
|
|
|
</ItemGroup>
|
2020-03-28 02:54:08 +00:00
|
|
|
|
<ItemGroup>
|
2020-03-29 14:28:38 +00:00
|
|
|
|
<None Include="Resources\toggle-left-ea-16.png" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Include="Resources\toggle-right-ea-16.png" />
|
|
|
|
|
</ItemGroup>
|
2020-03-31 19:53:50 +00:00
|
|
|
|
<ItemGroup>
|
2020-05-17 03:31:25 +00:00
|
|
|
|
<None Include="Resources\app_icon_24.png" />
|
2020-04-27 12:17:13 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2020-05-17 03:31:25 +00:00
|
|
|
|
<None Include="Resources\folder_32.png" />
|
2020-04-27 12:17:13 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2020-05-17 11:28:21 +00:00
|
|
|
|
<Content Include="favicon.ico" />
|
2020-05-15 00:19:09 +00:00
|
|
|
|
</ItemGroup>
|
2020-10-21 00:54:00 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="FizzyLauncher.UI\FizzyLauncher.UI.csproj">
|
|
|
|
|
<Project>{d9a49347-583f-41b4-afe1-63ec80bbdb38}</Project>
|
|
|
|
|
<Name>FizzyLauncher.UI</Name>
|
|
|
|
|
</ProjectReference>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup />
|
2020-03-27 23:16:34 +00:00
|
|
|
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
|
|
|
|
</Project>
|