RGB2RGBA.csproj 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  6. <ProductVersion>9.0.30729</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{CBB73431-C0BA-4483-BAE0-463416BCA754}</ProjectGuid>
  9. <OutputType>WinExe</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>RGB2RGBA</RootNamespace>
  12. <AssemblyName>RGB2RGBA</AssemblyName>
  13. <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
  14. <FileAlignment>512</FileAlignment>
  15. <FileUpgradeFlags>
  16. </FileUpgradeFlags>
  17. <OldToolsVersion>3.5</OldToolsVersion>
  18. <UpgradeBackupLocation />
  19. </PropertyGroup>
  20. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  21. <DebugSymbols>true</DebugSymbols>
  22. <DebugType>full</DebugType>
  23. <Optimize>false</Optimize>
  24. <OutputPath>bin\Debug\</OutputPath>
  25. <DefineConstants>DEBUG;TRACE</DefineConstants>
  26. <ErrorReport>prompt</ErrorReport>
  27. <WarningLevel>4</WarningLevel>
  28. <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
  29. </PropertyGroup>
  30. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  31. <DebugType>pdbonly</DebugType>
  32. <Optimize>true</Optimize>
  33. <OutputPath>bin\Release\</OutputPath>
  34. <DefineConstants>TRACE</DefineConstants>
  35. <ErrorReport>prompt</ErrorReport>
  36. <WarningLevel>4</WarningLevel>
  37. <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
  38. </PropertyGroup>
  39. <ItemGroup>
  40. <Reference Include="System" />
  41. <Reference Include="System.Core">
  42. <RequiredTargetFramework>3.5</RequiredTargetFramework>
  43. </Reference>
  44. <Reference Include="System.Xml.Linq">
  45. <RequiredTargetFramework>3.5</RequiredTargetFramework>
  46. </Reference>
  47. <Reference Include="System.Data.DataSetExtensions">
  48. <RequiredTargetFramework>3.5</RequiredTargetFramework>
  49. </Reference>
  50. <Reference Include="System.Data" />
  51. <Reference Include="System.Deployment" />
  52. <Reference Include="System.Drawing" />
  53. <Reference Include="System.Windows.Forms" />
  54. <Reference Include="System.Xml" />
  55. </ItemGroup>
  56. <ItemGroup>
  57. <Compile Include="Form1.cs">
  58. <SubType>Form</SubType>
  59. </Compile>
  60. <Compile Include="Form1.Designer.cs">
  61. <DependentUpon>Form1.cs</DependentUpon>
  62. </Compile>
  63. <Compile Include="Program.cs" />
  64. <Compile Include="Properties\AssemblyInfo.cs" />
  65. <EmbeddedResource Include="Form1.resx">
  66. <DependentUpon>Form1.cs</DependentUpon>
  67. </EmbeddedResource>
  68. <EmbeddedResource Include="Properties\Resources.resx">
  69. <Generator>ResXFileCodeGenerator</Generator>
  70. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  71. <SubType>Designer</SubType>
  72. </EmbeddedResource>
  73. <Compile Include="Properties\Resources.Designer.cs">
  74. <AutoGen>True</AutoGen>
  75. <DependentUpon>Resources.resx</DependentUpon>
  76. <DesignTime>True</DesignTime>
  77. </Compile>
  78. <None Include="Properties\Settings.settings">
  79. <Generator>SettingsSingleFileGenerator</Generator>
  80. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  81. </None>
  82. <Compile Include="Properties\Settings.Designer.cs">
  83. <AutoGen>True</AutoGen>
  84. <DependentUpon>Settings.settings</DependentUpon>
  85. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  86. </Compile>
  87. </ItemGroup>
  88. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  89. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  90. Other similar extension points exist, see Microsoft.Common.targets.
  91. <Target Name="BeforeBuild">
  92. </Target>
  93. <Target Name="AfterBuild">
  94. </Target>
  95. -->
  96. </Project>