quick-color-picker.csproj 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  4. <PropertyGroup>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <ProjectGuid>{623FD142-66F0-417C-8833-43832B11CF49}</ProjectGuid>
  8. <OutputType>WinExe</OutputType>
  9. <RootNamespace>quick_color_picker</RootNamespace>
  10. <AssemblyName>quick-color-picker</AssemblyName>
  11. <TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
  12. <FileAlignment>512</FileAlignment>
  13. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  14. <Deterministic>true</Deterministic>
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  17. <PlatformTarget>AnyCPU</PlatformTarget>
  18. <DebugSymbols>true</DebugSymbols>
  19. <DebugType>full</DebugType>
  20. <Optimize>false</Optimize>
  21. <OutputPath>bin\Debug\</OutputPath>
  22. <DefineConstants>DEBUG;TRACE</DefineConstants>
  23. <ErrorReport>prompt</ErrorReport>
  24. <WarningLevel>4</WarningLevel>
  25. </PropertyGroup>
  26. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  27. <PlatformTarget>AnyCPU</PlatformTarget>
  28. <DebugType>pdbonly</DebugType>
  29. <Optimize>true</Optimize>
  30. <OutputPath>bin\Release\</OutputPath>
  31. <DefineConstants>TRACE</DefineConstants>
  32. <ErrorReport>prompt</ErrorReport>
  33. <WarningLevel>4</WarningLevel>
  34. </PropertyGroup>
  35. <PropertyGroup>
  36. <StartupObject>quick_color_picker.Program</StartupObject>
  37. </PropertyGroup>
  38. <PropertyGroup>
  39. <ApplicationIcon>picker.ico</ApplicationIcon>
  40. </PropertyGroup>
  41. <ItemGroup>
  42. <Reference Include="GitHubUpdate, Version=1.2.0.0, Culture=neutral, processorArchitecture=MSIL">
  43. <HintPath>..\packages\GitHubUpdate.1.2.0.0\lib\net45\GitHubUpdate.dll</HintPath>
  44. </Reference>
  45. <Reference Include="Octokit, Version=0.3.4.0, Culture=neutral, processorArchitecture=MSIL">
  46. <HintPath>..\packages\Octokit.0.3.4\lib\net45\Octokit.dll</HintPath>
  47. </Reference>
  48. <Reference Include="Semver, Version=1.1.2.0, Culture=neutral, processorArchitecture=MSIL">
  49. <HintPath>..\packages\semver.1.1.2\lib\net451\Semver.dll</HintPath>
  50. </Reference>
  51. <Reference Include="System" />
  52. <Reference Include="System.Core" />
  53. <Reference Include="System.Xml.Linq" />
  54. <Reference Include="System.Data.DataSetExtensions" />
  55. <Reference Include="Microsoft.CSharp" />
  56. <Reference Include="System.Data" />
  57. <Reference Include="System.Deployment" />
  58. <Reference Include="System.Drawing" />
  59. <Reference Include="System.Net.Http" />
  60. <Reference Include="System.Windows.Forms" />
  61. <Reference Include="System.Xml" />
  62. </ItemGroup>
  63. <ItemGroup>
  64. <Compile Include="AboutForm.cs">
  65. <SubType>Form</SubType>
  66. </Compile>
  67. <Compile Include="AboutForm.Designer.cs">
  68. <DependentUpon>AboutForm.cs</DependentUpon>
  69. </Compile>
  70. <Compile Include="ToolStripOverride.cs" />
  71. <Compile Include="MainForm.cs">
  72. <SubType>Form</SubType>
  73. </Compile>
  74. <Compile Include="MainForm.Designer.cs">
  75. <DependentUpon>MainForm.cs</DependentUpon>
  76. </Compile>
  77. <Compile Include="Program.cs" />
  78. <Compile Include="Properties\AssemblyInfo.cs" />
  79. <Compile Include="ThemeManager.cs" />
  80. <EmbeddedResource Include="AboutForm.resx">
  81. <DependentUpon>AboutForm.cs</DependentUpon>
  82. </EmbeddedResource>
  83. <EmbeddedResource Include="MainForm.resx">
  84. <DependentUpon>MainForm.cs</DependentUpon>
  85. </EmbeddedResource>
  86. <EmbeddedResource Include="Properties\Resources.resx">
  87. <Generator>ResXFileCodeGenerator</Generator>
  88. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  89. <SubType>Designer</SubType>
  90. </EmbeddedResource>
  91. <Compile Include="Properties\Resources.Designer.cs">
  92. <AutoGen>True</AutoGen>
  93. <DependentUpon>Resources.resx</DependentUpon>
  94. </Compile>
  95. <None Include="packages.config" />
  96. <None Include="Properties\Settings.settings">
  97. <Generator>SettingsSingleFileGenerator</Generator>
  98. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  99. </None>
  100. <Compile Include="Properties\Settings.Designer.cs">
  101. <AutoGen>True</AutoGen>
  102. <DependentUpon>Settings.settings</DependentUpon>
  103. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  104. </Compile>
  105. </ItemGroup>
  106. <ItemGroup>
  107. <None Include="App.config" />
  108. </ItemGroup>
  109. <ItemGroup>
  110. <Content Include="picker.ico" />
  111. </ItemGroup>
  112. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  113. </Project>