quick-color-picker.csproj 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  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.6.1</TargetFrameworkVersion>
  12. <FileAlignment>512</FileAlignment>
  13. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  14. <Deterministic>true</Deterministic>
  15. <TargetFrameworkProfile />
  16. </PropertyGroup>
  17. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  18. <PlatformTarget>AnyCPU</PlatformTarget>
  19. <DebugSymbols>true</DebugSymbols>
  20. <DebugType>full</DebugType>
  21. <Optimize>false</Optimize>
  22. <OutputPath>bin\Debug\</OutputPath>
  23. <DefineConstants>DEBUG;TRACE</DefineConstants>
  24. <ErrorReport>prompt</ErrorReport>
  25. <WarningLevel>4</WarningLevel>
  26. <Prefer32Bit>false</Prefer32Bit>
  27. </PropertyGroup>
  28. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  29. <PlatformTarget>AnyCPU</PlatformTarget>
  30. <DebugType>pdbonly</DebugType>
  31. <Optimize>true</Optimize>
  32. <OutputPath>bin\Release\</OutputPath>
  33. <DefineConstants>TRACE</DefineConstants>
  34. <ErrorReport>prompt</ErrorReport>
  35. <WarningLevel>4</WarningLevel>
  36. <Prefer32Bit>false</Prefer32Bit>
  37. </PropertyGroup>
  38. <PropertyGroup>
  39. <StartupObject>quick_color_picker.Program</StartupObject>
  40. </PropertyGroup>
  41. <PropertyGroup>
  42. <ApplicationIcon>picker.ico</ApplicationIcon>
  43. </PropertyGroup>
  44. <ItemGroup>
  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="System" />
  49. <Reference Include="System.Core" />
  50. <Reference Include="System.Xml.Linq" />
  51. <Reference Include="System.Data.DataSetExtensions" />
  52. <Reference Include="Microsoft.CSharp" />
  53. <Reference Include="System.Data" />
  54. <Reference Include="System.Deployment" />
  55. <Reference Include="System.Drawing" />
  56. <Reference Include="System.Net.Http" />
  57. <Reference Include="System.Windows.Forms" />
  58. <Reference Include="System.Xml" />
  59. </ItemGroup>
  60. <ItemGroup>
  61. <Compile Include="Views\AboutForm.cs">
  62. <SubType>Form</SubType>
  63. </Compile>
  64. <Compile Include="Views\AboutForm.Designer.cs">
  65. <DependentUpon>AboutForm.cs</DependentUpon>
  66. </Compile>
  67. <Compile Include="ColorManager.cs" />
  68. <Compile Include="Views\DownloadForm.cs">
  69. <SubType>Form</SubType>
  70. </Compile>
  71. <Compile Include="Views\DownloadForm.Designer.cs">
  72. <DependentUpon>DownloadForm.cs</DependentUpon>
  73. </Compile>
  74. <Compile Include="Properties\Resources.Designer.cs">
  75. <AutoGen>True</AutoGen>
  76. <DesignTime>True</DesignTime>
  77. <DependentUpon>Resources.resx</DependentUpon>
  78. </Compile>
  79. <Compile Include="ToolStripOverride.cs" />
  80. <Compile Include="MainForm.cs">
  81. <SubType>Form</SubType>
  82. </Compile>
  83. <Compile Include="MainForm.Designer.cs">
  84. <DependentUpon>MainForm.cs</DependentUpon>
  85. </Compile>
  86. <Compile Include="Program.cs" />
  87. <Compile Include="Properties\AssemblyInfo.cs" />
  88. <Compile Include="ThemeManager.cs" />
  89. <Compile Include="Utils\Updater\UpdateChecker.cs" />
  90. <Compile Include="Views\UpdateForm.cs">
  91. <SubType>Form</SubType>
  92. </Compile>
  93. <Compile Include="Views\UpdateForm.Designer.cs">
  94. <DependentUpon>UpdateForm.cs</DependentUpon>
  95. </Compile>
  96. <EmbeddedResource Include="Views\AboutForm.resx">
  97. <DependentUpon>AboutForm.cs</DependentUpon>
  98. </EmbeddedResource>
  99. <EmbeddedResource Include="Views\DownloadForm.resx">
  100. <DependentUpon>DownloadForm.cs</DependentUpon>
  101. </EmbeddedResource>
  102. <EmbeddedResource Include="MainForm.resx">
  103. <DependentUpon>MainForm.cs</DependentUpon>
  104. </EmbeddedResource>
  105. <EmbeddedResource Include="Properties\Resources.resx">
  106. <Generator>ResXFileCodeGenerator</Generator>
  107. <SubType>Designer</SubType>
  108. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  109. </EmbeddedResource>
  110. <None Include="packages.config" />
  111. <None Include="Properties\Settings.settings">
  112. <Generator>SettingsSingleFileGenerator</Generator>
  113. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  114. </None>
  115. <Compile Include="Properties\Settings.Designer.cs">
  116. <AutoGen>True</AutoGen>
  117. <DependentUpon>Settings.settings</DependentUpon>
  118. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  119. </Compile>
  120. </ItemGroup>
  121. <ItemGroup>
  122. <None Include="App.config" />
  123. </ItemGroup>
  124. <ItemGroup>
  125. <None Include="resources\imgs\light\white-ontop.png" />
  126. <None Include="resources\imgs\light\white-trash.png" />
  127. <None Include="resources\imgs\light\white-copy.png" />
  128. <None Include="resources\imgs\light\white-broom.png" />
  129. <None Include="resources\imgs\light\white-about.png" />
  130. </ItemGroup>
  131. <ItemGroup>
  132. <None Include="resources\imgs\light\white-format.png" />
  133. </ItemGroup>
  134. <ItemGroup>
  135. <Content Include="picker.ico" />
  136. <None Include="resources\imgs\light\white-rename.png" />
  137. </ItemGroup>
  138. <ItemGroup />
  139. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  140. </Project>